mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 16:11:40 +00:00
7 lines
70 B
C
7 lines
70 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
wint_t getwc(FILE *f)
|
||
|
{
|
||
|
return fgetwc(f);
|
||
|
}
|