]> git.lizzy.rs Git - plan9front.git/blob - sys/src/ape/lib/bsd/setlinebuf.c
ape: Add mkstemp to /sys/src/ape/lib/ap/gen/mkfile
[plan9front.git] / sys / src / ape / lib / bsd / setlinebuf.c
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 }