From: Michael Brown Date: Tue, 8 Aug 2006 22:52:16 +0000 (+0000) Subject: The prototype for strcasecmp() is apparently in strings.h. X-Git-Tag: v0.9.3~1134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eda79ec32bdfffbacbfb2f593158617ddc8ae204;p=thirdparty%2Fipxe.git The prototype for strcasecmp() is apparently in strings.h. --- diff --git a/src/include/strings.h b/src/include/strings.h index 38db90be2..36a0f3333 100644 --- a/src/include/strings.h +++ b/src/include/strings.h @@ -51,4 +51,6 @@ extern int __flsl ( long x ); #define fls( x ) \ ( __builtin_constant_p ( x ) ? __constant_fls ( x ) : __fls ( x ) ) +extern int strcasecmp ( const char *s1, const char *s2 ); + #endif /* _STRINGS_H */