musl-tcc/src/stdio/setlinebuf.c

8 lines
96 B
C

#define _GNU_SOURCE
#include <stdio.h>
void setlinebuf(FILE *f)
{
setvbuf(f, 0, _IOLBF, 0);
}