shithub: scc

ref: 823acc68023d0d810d7d830f13da713625bc51f4
dir: /lib/c/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);
}