ref: 5a13b1a8c6e3232be716f6cfeb7dec710f947f14 dir: /lib/c/src/setbuf.c/
#include <stdio.h> #undef setbuf void setbuf(FILE * restrict fp, char * restrict buf) { setvbuf(fp, buf, (buf) ? _IOFBF : _IONBF, BUFSIZ); }