aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/setlinebuf.c
blob: b94920f959230c96ec3a76d3d3f1793eef885fcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#define _GNU_SOURCE
#include <stdio.h>

void setlinebuf(FILE *f)
{
	setvbuf(f, 0, _IOLBF, 0);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif