musl-tcc/src/stdio/setbuf.c

7 lines
123 B
C
Raw Permalink Normal View History

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