Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#include <stdio.h>
void
setlinebuf(FILE *f)
{
static char buf[BUFSIZ];
setvbuf (f, buf, _IOLBF, BUFSIZ);
}