From eda79ec32bdfffbacbfb2f593158617ddc8ae204 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 8 Aug 2006 22:52:16 +0000 Subject: [PATCH] The prototype for strcasecmp() is apparently in strings.h. --- src/include/strings.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/strings.h b/src/include/strings.h index 38db90be..36a0f333 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 */