From 33cd703f559200f326bd4a9613edd90f1b1c8e9d Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 5 Jun 2013 16:14:35 +0200 Subject: Fix implicit declaration caused missing #include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -flto -MT user_io.o -MD -MP -MF .deps/user_io.Tpo -c -o user_io.o user_io.c user_io.c: In function ‘err’: user_io.c:38:25: warning: incompatible implicit declaration of built-in function ‘strlen’ [enabled by default] Signed-off-by: Ralf Baechle --- user_call/user_io.c | 1 + 1 file changed, 1 insertion(+) (limited to 'user_call/user_io.c') diff --git a/user_call/user_io.c b/user_call/user_io.c index d8f95a1..c486e46 100644 --- a/user_call/user_io.c +++ b/user_call/user_io.c @@ -1,4 +1,5 @@ #include +#include #include #include #include -- cgit v1.2.3