2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-23 19:51:46 +00:00

The prototype for strcasecmp() is apparently in strings.h.

This commit is contained in:
Michael Brown 2006-08-08 22:52:16 +00:00
parent 409f69a08a
commit eda79ec32b

View File

@ -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 */