musl-tcc/src/stdio/setbuf.c
2022-03-20 16:48:53 +08:00

7 lines
123 B
C

#include <stdio.h>
void setbuf(FILE *restrict f, char *restrict buf)
{
setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
}