projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix behavior of printf with alt-form octal, zero precision, zero value
[oweals/musl.git]
/
src
/
stdio
/
getc_unlocked.c
1
#include "stdio_impl.h"
2
3
int (getc_unlocked)(FILE *f)
4
{
5
return getc_unlocked(f);
6
}
7
8
weak_alias (getc_unlocked, fgetc_unlocked);
9
weak_alias (getc_unlocked, _IO_getc_unlocked);