repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
preserve errno across free
[musl.git]
/
src
/
stdio
/
putwchar.c
blob
b249c4ac10997061355a261ff15cda08743183d9
1
#include
"stdio_impl.h"
2
#include <wchar.h>
3
4
wint_t
putwchar
(
wchar_t
c
)
5
{
6
return
fputwc
(
c
,
stdout
);
7
}
8
9
weak_alias
(
putwchar
,
putwchar_unlocked
);