xref: /plan9/sys/src/ape/lib/bsd/setlinebuf.c (revision 8ccd4a6360d974db7bd7bbd4f37e7018419ea908)
1 #include <stdio.h>
2 
3 void
4 setlinebuf(FILE *f)
5 {
6 	static char buf[BUFSIZ];
7 
8 	setvbuf (f, buf, _IOLBF, BUFSIZ);
9 }
10