diff options
Diffstat (limited to 'os/strcasestr.c')
-rw-r--r-- | os/strcasestr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/strcasestr.c b/os/strcasestr.c index cbc84f124..b3d45495c 100644 --- a/os/strcasestr.c +++ b/os/strcasestr.c @@ -42,7 +42,7 @@ * Find the first occurrence of find in s, ignore case. */ #ifdef NEED_STRCASESTR -_X_EXPORT char * +char * xstrcasestr(const char *s, const char *find) { char c, sc; |