mirror of
https://github.com/fluencelabs/musl
synced 2025-06-12 22:41:37 +00:00
fix wrong type for wcsrchr argument 2
This commit is contained in:
@ -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--);
|
||||
|
Reference in New Issue
Block a user