aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/log.c3
-rw-r--r--src/log.h6
2 files changed, 6 insertions, 3 deletions
diff --git a/src/log.c b/src/log.c
index 5522670..884492e 100644
--- a/src/log.c
+++ b/src/log.c
@@ -5,6 +5,9 @@
#include "log.h"
+unsigned int log_loglevel;
+int log_fd;
+
const char* log_loglevel_str[5] = {
"---",
"ERROR",
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){\