Files
Kevin Haubris 3213f9e9ad Initial commit
2022-04-26 12:55:27 -05:00

10 lines
166 B
C

#ifndef _DEBUG_H_
#define _DEBUG_H_
#if defined( DEBUG )
#define DEBUG_PRINT(x, ...) printf(x, ##__VA_ARGS__)
#else
#define DEBUG_PRINT(x, ...)
#endif
#endif