diff options
Diffstat (limited to 'compiler/log.c')
-rw-r--r-- | compiler/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/log.c b/compiler/log.c index 9362019..c369b4b 100644 --- a/compiler/log.c +++ b/compiler/log.c @@ -2,8 +2,8 @@ #include <stdio.h> +#if(LOG_LEVEL < LOG_DEBUG) void log_debug(char* msg) { - #if(LOG_LEVEL < LOG_DEBUG) fprintf(stdout, "%s\n", msg); - #endif } +#endif |