shithub: scc

ref: 34bc68e7ade75c1627c7de6cbaa605601f2479fe
dir: /lib/c/src/setbuf.c/

View raw version

#include <stdio.h>
#undef setbuf

void
setbuf(FILE * restrict fp, char * restrict buf)
{
	setvbuf(fp, buf, (buf) ? _IOFBF : _IONBF, BUFSIZ);
}