Make xstrcasestr prototype return value match the implementation

This commit is contained in:
Alan Coopersmith 2008-07-17 18:16:59 -07:00
parent f7bfa4ae97
commit 3b687ffe16

View File

@ -611,7 +611,7 @@ extern int xstrncasecmp(const char *s1, const char *s2, size_t n);
#if NEED_STRCASESTR #if NEED_STRCASESTR
#define strcasestr xstrcasestr #define strcasestr xstrcasestr
extern int xstrcasestr(const char *s, const char *find); extern char *xstrcasestr(const char *s, const char *find);
#endif #endif
extern int XItoCoreType(int xi_type); extern int XItoCoreType(int xi_type);