repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
optimize hot paths of getc with manual shrink-wrapping
[musl.git]
/
src
/
stdio
/
getchar.c
blob
df395ca9548dc3591469e0676c334c3e362aba2d
1
#include <stdio.h>
2
#include
"getc.h"
3
4
int
getchar
(
void
)
5
{
6
return
do_getc
(
stdin
);
7
}