diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-04-24 21:52:59 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-04-24 21:52:59 +0200 |
commit | 58ec0a557b08638c3a5b5547f05d087c71f4d437 (patch) | |
tree | e6e3e6275fdff8a2e71b82e253900d32b955f515 /clog.h | |
parent | 750b25871dae2ff69ca35c3c8d83ba548b8ac5fb (diff) |
Turn lprintf into vlprintf for future extensibility
Diffstat (limited to 'clog.h')
-rw-r--r-- | clog.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |