log.c: fix warnings.

This commit is contained in:
whitequark 2015-08-28 03:03:32 -05:00
parent 9fd25a1cc4
commit 30cdb209c6
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <console.h>
#include <generated/csr.h>

View File

@ -12,6 +12,6 @@ void log_va(const char *fmt, va_list args);
void log(const char *fmt, ...);
void log_get(char *outbuf);
void log_clear();
void log_clear(void);
#endif /* __LOG_H */