Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
refs/heads/master
/
.
/
src
/
stdio
/
setlinebuf.c
blob: b93c4d6a1e1671a613aee5a86fd40600da02e954 [
file
] [
log
] [
blame
] [
edit
]
#define
_GNU_SOURCE
#include
<stdio.h>
void
setlinebuf
(
FILE
*
f
)
{
setvbuf
(
f
,
0
,
_IOLBF
,
0
);
}