projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix behavior of printf with alt-form octal, zero precision, zero value
[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
return (int)fwrite(s, strlen(s), 1, f) - 1;
7
}
8
9
weak_alias(fputs, fputs_unlocked);