xref: /aosp_15_r20/external/musl/src/stdio/setbuf.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <stdio.h>
2 
setbuf(FILE * restrict f,char * restrict buf)3 void setbuf(FILE *restrict f, char *restrict buf)
4 {
5 	setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
6 }
7