mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 12:41:32 +00:00
9 lines
116 B
C
9 lines
116 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
wint_t getwchar(void)
|
||
|
{
|
||
|
return fgetwc(stdin);
|
||
|
}
|
||
|
|
||
|
weak_alias(getwchar, getwchar_unlocked);
|