git: 9front

ref: 33e9bf14f1bcfbefbb8bfccdee14d02e30894bcb
dir: /sys/src/ape/lib/bsd/setlinebuf.c/

View raw version
#include <stdio.h>

void
setlinebuf(FILE *f)
{
	static char buf[BUFSIZ];

	setvbuf (f, buf, _IOLBF, BUFSIZ);
}