diff options
Diffstat (limited to 'logs.h')
-rw-r--r-- | logs.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#ifndef LOGS_H +#define LOGS_H + +#include <stdarg.h> + +__attribute__((format(printf, 1, 2))) +void _log(const char *fmt, ...); + +#endif /* LOGS_H */ |