summaryrefslogtreecommitdiffstats
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/log.h b/src/log.h
index 7092e60..9ef09fe 100644
--- a/src/log.h
+++ b/src/log.h
@@ -1,9 +1,9 @@
+#pragma once
+
#include <stdarg.h>
#include <stdio.h>
void log_init(void);
-void log_info(const char *fmtstr, ...);
-void log_end(void);
+void log_deinit(void);
-extern int log_active;
-extern FILE *log_file;
+void log_info(const char *fmtstr, ...);