index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
stdio
/
putc.c
blob: cb89ed91ff8d6409b1d985379759435f821a5189 (
plain
)
1
2
3
4
5
#include <stdio.h> int putc(int c, FILE *stream) { return fputc(c, stream); }