Sign in
mojo
/
mojo
/
d21f93b751a5eef50069f02c0768c41c059f7522
/
.
/
fusl
/
src
/
stdio
/
setlinebuf.c
blob: e6db70169b374c9a1a61a3eb5fae0c17abd7a6fb [
file
]
#define
_GNU_SOURCE
#include
<stdio.h>
void
setlinebuf
(
FILE
*
f
)
{
setvbuf
(
f
,
0
,
_IOLBF
,
0
);
}