projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
replace all remaining internal uses of pthread_self with __pthread_self
[oweals/musl.git]
/
src
/
stdio
/
putwchar.c
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);