projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
reverse definition dependency between PAGESIZE and PAGE_SIZE
[oweals/musl.git]
/
src
/
stdio
/
fputs.c
1
#include "stdio_impl.h"
2
#include <string.h>
3
4
int fputs(const char *restrict s, FILE *restrict f)
5
{
6
size_t l = strlen(s);
7
return (fwrite(s, 1, l, f)==l) - 1;
8
}
9
10
weak_alias(fputs, fputs_unlocked);