loongarch64: add new syscall numbers
[musl.git] / src / stdio / setbuf.c
blob74ad7834ae59f20b8a9c4e25ff471313e6776e24
1 #include <stdio.h>
3 void setbuf(FILE *restrict f, char *restrict buf)
5 setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);