16 lines
267 B
C
16 lines
267 B
C
#ifndef _DEBUG_H_
|
|
#define _DEBUG_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
/* uncomment this to enable super-verbose debugging output */
|
|
// #define IVY_LANG_DEBUG
|
|
|
|
#if defined(IVY_LANG_DEBUG)
|
|
#define debug_printf(...) printf(__VA_ARGS__)
|
|
#else
|
|
#define debug_printf(...)
|
|
#endif
|
|
|
|
#endif
|