mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 08:01:38 +00:00
remove unneeded headers. this file is utterly trivial now and there's no sense in having a comment to state that it's in the public domain.
8 lines
158 B
C
8 lines
158 B
C
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
|
|
size_t mbstowcs(wchar_t *restrict ws, const char *restrict s, size_t wn)
|
|
{
|
|
return mbsrtowcs(ws, (void*)&s, wn, 0);
|
|
}
|