diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-06-01 19:34:19 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-06-01 19:34:19 +0200 |
commit | f9ecb7e5b111193db0f5d714e748762ee2b8be1b (patch) | |
tree | 80f35a359b08785f772ae9da6687f8b651da8370 /src/log.h | |
parent | 21369ab14763faec0abeb4e669cb0db62121b6fd (diff) | |
download | dns-f9ecb7e5b111193db0f5d714e748762ee2b8be1b.tar.gz |
C89 Compat
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -41,8 +41,10 @@ extern const char* log_loglevel_str[6]; }\ } -// DEBUG Wrapper around LOGPRINTF wich is only compiled in in -// _DEBUG mode for performance +/* + * DEBUG Wrapper around LOGPRINTF wich is only compiled in in + * _DEBUG mode for performance + */ #ifdef _DEBUG #define DEBUG(...) { LOGPRINTF(_LOG_DEBUG, __VA_ARGS__); } |