projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix treatment by fgetws of encoding errors as eof
[oweals/musl.git]
/
src
/
stdio
/
putchar_unlocked.c
1
#include "stdio_impl.h"
2
3
int putchar_unlocked(int c)
4
{
5
return putc_unlocked(c, stdout);
6
}