summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2021-10-26 17:00:14 +0100
committerPhil Jones <philj56@gmail.com>2021-10-26 17:00:32 +0100
commit7a640bd0622caf8a3354934d0400e8c361cdeee3 (patch)
tree37cb644e500af10acd86e3395941ed3b50828040 /src/log.h
parentbe50c08dabd7bdddaa47e8807c41f3c5b9a80be8 (diff)
Add EGL setup (unused for now).
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h
new file mode 100644
index 0000000..e030bc9
--- /dev/null
+++ b/src/log.h
@@ -0,0 +1,9 @@
+#ifndef LOG_H
+#define LOG_H
+
+void log_error(const char *const fmt, ...);
+void log_warning(const char *const fmt, ...);
+void log_debug(const char *const fmt, ...);
+void log_info(const char *const fmt, ...);
+
+#endif /* LOG_H */