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
/
putchar.c
1
#include <stdio.h>
2
3
int putchar(int c)
4
{
5
return fputc(c, stdout);
6
}