fix wrong type for wcsrchr argument 2

This commit is contained in:
Rich Felker 2011-06-13 14:06:04 -04:00
parent 773b0fe447
commit 73d2fde119

View File

@ -1,6 +1,6 @@
#include <wchar.h>
wchar_t *wcsrchr(const wchar_t *s, wint_t c)
wchar_t *wcsrchr(const wchar_t *s, wchar_t c)
{
const wchar_t *p;
for (p=s+wcslen(s); p>=s && *p!=c; p--);