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