1
0
mirror of https://github.com/fluencelabs/musl synced 2025-05-31 08:31:39 +00:00
musl/src/stdio/setlinebuf.c

8 lines
96 B
C
Raw Normal View History

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