From a2d5d65b21b02af0285c96ee7a95900529390e54 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 29 Jan 2016 09:54:53 +0100 Subject: cpp: Fix sparse warning Include cpp.h for the prototype of cpp_exec() in order to fix the following sparse warning: cpp.c:18:5: warning: symbol 'cpp_exec' was not declared. Should it be static? Signed-off-by: Tobias Klauser --- cpp.c | 1 + 1 file changed, 1 insertion(+) (limited to 'cpp.c') diff --git a/cpp.c b/cpp.c index 30a1404..f6c15af 100644 --- a/cpp.c +++ b/cpp.c @@ -1,6 +1,7 @@ #include #include +#include "cpp.h" #include "str.h" #include "proc.h" #include "xmalloc.h" -- cgit v1.2.3-54-g00ecf