Fex-II/inc/debug.h
2024-02-22 23:34:30 -06:00

17 lines
252 B
C

//
// Created by auric on 2/22/24.
//
#ifndef DEBUG_H
#define DEBUG_H
#include "nprint.h"
#ifdef debugEnabled
#define DEBUG_PRINT(fmt, ...) nprint("D", fmt, ##__VA_ARGS__)
#else
#define DEBUG_PRINT(fmg, ...) void(0)
#endif
#endif //DEBUG_H