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: a468a95c90c148d7e98f4156197a7b8c25d82cc8 (
plain
)
1
2
3
#include <stdio.h> int putc(int c, FILE *stream) { return fputc(c, stream);}