aboutsummaryrefslogtreecommitdiff
path: root/inc/log.h
diff options
context:
space:
mode:
authorMarvin Borner2021-08-29 13:54:31 +0200
committerMarvin Borner2021-08-29 13:54:31 +0200
commiteef250dd4a0ae185a8d9d668f020b2ab5c2f4849 (patch)
treee55aca9bfe918c5673ef925cdf373fdff68faafd /inc/log.h
parent7c047df78502d53411fef09c6e39540d2b7e796a (diff)
Start x86 rewrite
Diffstat (limited to 'inc/log.h')
-rw-r--r--inc/log.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/inc/log.h b/inc/log.h
new file mode 100644
index 0000000..ae55c17
--- /dev/null
+++ b/inc/log.h
@@ -0,0 +1,10 @@
+#ifndef LOG_H
+#define LOG_H
+
+void __logln(const char *func, const char *format, ...);
+void __errln(const char *func, const char *format, ...);
+
+#define logln(format, ...) __logln(__func__, format, ##__VA_ARGS__)
+#define errln(format, ...) __errln(__func__, format, ##__VA_ARGS__)
+
+#endif