mirror of
https://github.com/fluencelabs/musl
synced 2025-05-22 04:01:34 +00:00
8 lines
96 B
C
8 lines
96 B
C
|
#define _GNU_SOURCE
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void setlinebuf(FILE *f)
|
||
|
{
|
||
|
setvbuf(f, 0, _IOLBF, 0);
|
||
|
}
|