Sign in
fuchsia
/
zircon
/
sandbox/voydanoff/proxy
/
.
/
third_party
/
ulib
/
musl
/
src
/
stdio
/
setbuffer.c
blob: 97971de396ad787e7cc4def5b10511e3090033b6 [
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
);
}