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
/
putc_unlocked.c
1
#include "stdio_impl.h"
2
3
int (putc_unlocked)(int c, FILE *f)
4
{
5
return putc_unlocked(c, f);
6
}
7
8
weak_alias(putc_unlocked, fputc_unlocked);
9
weak_alias(putc_unlocked, _IO_putc_unlocked);