]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/stdio/setbuffer.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / stdio / setbuffer.c
1 #define _GNU_SOURCE
2 #include <stdio.h>
3
4 void setbuffer(FILE *f, char *buf, size_t size)
5 {
6 setvbuf(f, buf, buf ? _IOFBF : _IONBF, size);
7 }