aboutsummaryrefslogtreecommitdiff
path: root/clog.h
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2022-04-24 21:52:59 +0200
committerHimbeerserverDE <himbeerserverde@gmail.com>2022-04-24 21:52:59 +0200
commit58ec0a557b08638c3a5b5547f05d087c71f4d437 (patch)
treee6e3e6275fdff8a2e71b82e253900d32b955f515 /clog.h
parent750b25871dae2ff69ca35c3c8d83ba548b8ac5fb (diff)
Turn lprintf into vlprintf for future extensibility
Diffstat (limited to 'clog.h')
-rw-r--r--clog.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/clog.h b/clog.h
index 50b8455..216eed8 100644
--- a/clog.h
+++ b/clog.h
@@ -1,6 +1,8 @@
#ifndef _CLOG_H_
#define _CLOG_H_
-int lprintf(const char *format, ...);
+#include <stdarg.h>
+
+int vlprintf(const char *format, va_list ap);
#endif