summaryrefslogtreecommitdiff
path: root/logs.h
diff options
context:
space:
mode:
Diffstat (limited to 'logs.h')
-rw-r--r--logs.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/logs.h b/logs.h
new file mode 100644
index 0000000..f36695d
--- /dev/null
+++ b/logs.h
@@ -0,0 +1,9 @@
+#ifndef LOGS_H
+#define LOGS_H
+
+#include <stdarg.h>
+
+__attribute__((format(printf, 1, 2)))
+void _log(const char *fmt, ...);
+
+#endif /* LOGS_H */