From 30cdb209c6004f7d6c280b583841b35c21bb9bb4 Mon Sep 17 00:00:00 2001 From: whitequark Date: Fri, 28 Aug 2015 03:03:32 -0500 Subject: [PATCH] log.c: fix warnings. --- soc/runtime/log.c | 1 + soc/runtime/log.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/soc/runtime/log.c b/soc/runtime/log.c index 413857564..cb64bea00 100644 --- a/soc/runtime/log.c +++ b/soc/runtime/log.c @@ -1,5 +1,6 @@ #include #include +#include #include #include diff --git a/soc/runtime/log.h b/soc/runtime/log.h index 74e3e815e..f32597a2a 100644 --- a/soc/runtime/log.h +++ b/soc/runtime/log.h @@ -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 */