musl-tcc/src/stdio/setbuf.c

7 lines
123 B
C
Raw Permalink Normal View History

2022-03-20 04:48:53 -04:00
#include <stdio.h>
void setbuf(FILE *restrict f, char *restrict buf)
{
setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
}