Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
stdio
/
setbuf.c
blob: 74ad7834ae59f20b8a9c4e25ff471313e6776e24 [
file
]
#include
<stdio.h>
void
setbuf
(
FILE
*
restrict f
,
char
*
restrict buf
)
{
setvbuf
(
f
,
buf
,
buf
?
_IOFBF
:
_IONBF
,
BUFSIZ
);
}