Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
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
);
}