diff options
author | Camil Staps | 2016-08-25 20:29:50 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-25 20:29:50 +0200 |
commit | 821939c6a6eb5761708146783ebd562422c2a7f7 (patch) | |
tree | dd26b29c65431801f4ca45d6952b7806534f9c8c /interpreter/log.c | |
parent | Remove unnecessary includes (diff) |
pedantic
Diffstat (limited to 'interpreter/log.c')
-rw-r--r-- | interpreter/log.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/interpreter/log.c b/interpreter/log.c new file mode 100644 index 0000000..c369b4b --- /dev/null +++ b/interpreter/log.c @@ -0,0 +1,9 @@ +#include "log.h" + +#include <stdio.h> + +#if(LOG_LEVEL < LOG_DEBUG) +void log_debug(char* msg) { + fprintf(stdout, "%s\n", msg); +} +#endif |