Files
ivy/lang/debug.h
T

16 lines
267 B
C
Raw Normal View History

2024-12-05 19:37:58 +00:00
#ifndef _DEBUG_H_
#define _DEBUG_H_
#include <stdio.h>
/* uncomment this to enable super-verbose debugging output */
// #define IVY_LANG_DEBUG
2024-12-05 19:37:58 +00:00
#if defined(IVY_LANG_DEBUG)
#define debug_printf(...) printf(__VA_ARGS__)
#else
#define debug_printf(...)
#endif
#endif