summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/setbuf.c
blob: ddddf4acfc4eb08a6254e2ee7a1f5611e26dec56 (plain)
1
2
3
4
5
6
#include <stdio.h> // for setvbuf, BUFSIZ, FILE, NULL, _IOFBF, _IONBF, setbuf

void setbuf(FILE *restrict stream, char *restrict buf)
{
	setvbuf(stream, buf, buf != NULL ? _IOFBF : _IONBF, BUFSIZ);
}