Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
stdio
/
setbuffer.c
blob: 71233d2ec1aee44d044786b68d1cbbc6d39d9e33 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<stdio.h>
void
setbuffer
(
FILE
*
f
,
char
*
buf
,
size_t
size
)
{
setvbuf
(
f
,
buf
,
buf
?
_IOFBF
:
_IONBF
,
size
);
}