diff options
Diffstat (limited to 'wcsmbs/wcsstr.c')
-rw-r--r-- | wcsmbs/wcsstr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/wcsmbs/wcsstr.c b/wcsmbs/wcsstr.c index a62c29eaec..4fbc7eab9b 100644 --- a/wcsmbs/wcsstr.c +++ b/wcsmbs/wcsstr.c @@ -29,9 +29,7 @@ #include <wchar.h> wchar_t * -wcsstr (haystack, needle) - const wchar_t *haystack; - const wchar_t *needle; +wcsstr (const wchar_t *haystack, const wchar_t *needle) { wchar_t b, c; |