Sign in
fuchsia
/
zircon
/
sandbox/voydanoff/proxy
/
.
/
third_party
/
ulib
/
musl
/
src
/
stdio
/
setbuf.c
blob: 223768b6affca9b57db8b438c97813fa51db328b [
file
] [
log
] [
blame
]
#include
<stdio.h>
void
setbuf
(
FILE
*
restrict f
,
char
*
restrict buf
)
{
setvbuf
(
f
,
buf
,
buf
?
_IOFBF
:
_IONBF
,
BUFSIZ
);
}