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
/
puts.c
blob: 4a72e664ee984c370f52f5bef396159664346a9a (
plain
)
1
2
3
4
5
6
#include <stdio.h> int puts(const char *s) { int rc = printf("%s\n", s); return rc; }