summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/setbuf.c
blob: a1ef7b31cde06de895c16f90f435fc4c4c67d00c (plain)
1
2
3
4
5
6
7
#include <io.h>
#include <stdio.h>

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