summaryrefslogtreecommitdiff
path: root/include/rune_logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rune_logging.h')
-rw-r--r--include/rune_logging.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/rune_logging.h b/include/rune_logging.h
deleted file mode 100644
index f8876db..0000000
--- a/include/rune_logging.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef RUNE_LOGGING_H
-#define RUNE_LOGGING_H
-
-#include <rune_types.h>
-
-enum log_level {
- LOG_FATAL,
- LOG_ERROR,
- LOG_WARN,
- LOG_INFO,
- LOG_DEBUG
-};
-
-RAPI void log_output(int level, const char *fmt, ...);
-
-#endif