From: Jean-Christophe Dubois Date: Sat, 25 Jun 2005 21:55:43 +0000 (-0700) Subject: [PATCH] mconf.c needs locale.h X-Git-Tag: v2.6.13-rc1~68^2~161 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=442ff702233287df3f50ec3a7fd0a73d7367cf5a;p=linux-2.6 [PATCH] mconf.c needs locale.h This is failing on my cross-compilation environment (From a solaris system) using gcc-3.4.1 (as the compiler can't find a prototype for the setlocale() function). Signed-off-by: Jean-Christophe Dubois Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index e5db10ca95..98039bf721 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c @@ -20,6 +20,7 @@ #include #include #include +#include #define LKC_DIRECT_LINK #include "lkc.h"