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