diff options
Diffstat (limited to 'base.h')
-rw-r--r-- | base.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ typedef unsigned long ulong; #if DEBUG #if __unix__ -#define debug_println printf +#define debug_println(...) printf(__VA_ARGS__), printf("\n") #else // __unix__ static void debug_println(char const *fmt, ...) { char buf[256]; |