projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix treatment by fgetws of encoding errors as eof
[oweals/musl.git]
/
src
/
stdio
/
setlinebuf.c
1
#define _GNU_SOURCE
2
#include <stdio.h>
3
4
void setlinebuf(FILE *f)
5
{
6
setvbuf(f, 0, _IOLBF, 0);
7
}