missing include broke the gcc build

This commit is contained in:
Enno Rehling 2016-01-31 21:39:28 +01:00
parent 3e57b19d62
commit 217fbca656
1 changed files with 2 additions and 1 deletions

View File

@ -15,9 +15,10 @@ without prior permission by the authors of Eressea.
extern "C" { extern "C" {
#endif #endif
#include <stdio.h> #include <stdio.h>
#include <stdarg.h>
extern void log_open(const char *filename); extern void log_open(const char *filename);
extern void log_close(void); extern void log_close(void);
extern void log_flush(void);
/* use macros above instead of these: */ /* use macros above instead of these: */
extern void log_fatal(const char *format, ...); extern void log_fatal(const char *format, ...);