aboutsummaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-12-28 23:28:11 +0100
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-12-28 23:28:11 +0100
commit3cac8f89459317626d521904d85fcb8267671c78 (patch)
treec531ab1e8a534661e0cf6b95717c707f775c35b3 /src/log.h
parentbd8f280af2db0663f15ced2e95cb26a07a1560c4 (diff)
downloaddns-3cac8f89459317626d521904d85fcb8267671c78.tar.gz
fix log linker error
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/log.h b/src/log.h
index 81cea3d..ecbb9e9 100644
--- a/src/log.h
+++ b/src/log.h
@@ -18,10 +18,10 @@
#define _LOG_NOTE 3
#define _LOG_DEBUG 4
-unsigned int log_loglevel;
-int log_fd;
+extern unsigned int log_loglevel;
+extern int log_fd;
-const char* log_loglevel_str[5];
+extern const char* log_loglevel_str[5];
#define LOGPRINTF(l,...) {\
if((l) <= log_loglevel){\