Sign in
mojo
/
mojo-tools
/
711b2f1e6d912e6514b3a4f74068104ddd79a4b5
/
.
/
fusl
/
src
/
stdio
/
putwc.c
blob: 4bb74733486cfaf827ddbd58d50f2b3616208756 [
file
]
#include
"stdio_impl.h"
#include
<wchar.h>
wint_t
putwc
(
wchar_t
c
,
FILE
*
f
)
{
return
fputwc
(
c
,
f
);
}