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