aboutsummaryrefslogtreecommitdiff
path: root/inc/log.h
diff options
context:
space:
mode:
authorMarvin Borner2024-09-07 17:53:27 +0200
committerMarvin Borner2024-09-07 17:53:27 +0200
commit05f3cde3e7924c9ffcc1937661b3cc290d89c11a (patch)
tree54eb72746f488ab794ef39a6c42b4fbdea71e9a0 /inc/log.h
parent0aacbcf63f585634c5d5561dfcf5d16f365027d6 (diff)
Initial bootstrap
Diffstat (limited to 'inc/log.h')
-rw-r--r--inc/log.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/inc/log.h b/inc/log.h
new file mode 100644
index 0000000..5910305
--- /dev/null
+++ b/inc/log.h
@@ -0,0 +1,11 @@
+// Copyright (c) 2024, Marvin Borner <dev@marvinborner.de>
+// SPDX-License-Identifier: MIT
+
+#ifndef LOG_H
+#define LOG_H
+
+void debug(const char *format, ...);
+void debug_enable(int enable);
+void fatal(const char *format, ...) __attribute__((noreturn));
+
+#endif