projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix assumption in fputs that fwrite returning 0 implies an error
[oweals/musl.git]
/
src
/
stdio
/
setbuffer.c
1
#define _GNU_SOURCE
2
#include <stdio.h>
3
4
void setbuffer(FILE *f, char *buf, size_t size)
5
{
6
setvbuf(f, buf, buf ? _IOFBF : _IONBF, size);
7
}