index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
stdio
/
putchar_unlocked.c
blob: a8a5fc4728978a162ca3845234f92f1aec68eb53 (
plain
)
1
2
3
4
5
6
#include <stdio.h> int putchar_unlocked(int c) { return fputc_unlocked(c, stdout); }