mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-24 07:02:03 +03:00
fix wrong type for wcsrchr argument 2
This commit is contained in:
parent
773b0fe447
commit
73d2fde119
@ -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--);
|
||||
|
Loading…
Reference in New Issue
Block a user