From: Jim Meyering Date: Fri, 6 Jun 2003 22:20:29 +0000 (+0000) Subject: Include , not . X-Git-Tag: v5.0.1~333 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6926a9ca677f546b7d4657e0c2fb0f94b35a23da;p=thirdparty%2Fcoreutils.git Include , not . --- diff --git a/lib/strcasecmp.c b/lib/strcasecmp.c index ae7601de0f..cf4ab88dbd 100644 --- a/lib/strcasecmp.c +++ b/lib/strcasecmp.c @@ -29,7 +29,7 @@ # define LENGTH_LIMIT_EXPR(Expr) 0 #endif -#include +#include #include #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))