Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
stdio
/
setbuf.c
blob: 74ad7834ae59f20b8a9c4e25ff471313e6776e24 [
file
] [
log
] [
blame
]
#include
<stdio.h>
void
setbuf
(
FILE
*
restrict f
,
char
*
restrict buf
)
{
setvbuf
(
f
,
buf
,
buf
?
_IOFBF
:
_IONBF
,
BUFSIZ
);
}