summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/setbuf.c
blob: 48d15c51f242c3cb5765dbafd02d9d0223af9a84 (plain)
1
2
3
4
5
6
7
8
#include "stddef.h" // for NULL

#include <stdio.h> // for setvbuf, BUFSIZ, FILE, _IOFBF, _IONBF, setbuf

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