blob: 59524a3c32fef5b0e2b65df72201272c212311f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdio.h>
void setbuf(FILE *restrict f, char *restrict buf)
{
setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|