blob: 659b787d816a8267a75da304e6daf54dc39a1947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
#define _IOFBF (1)
/** full buffering **/
/***
is used as the ARGUMENT(mode) in calls to FUNCTION(setvbuf) to indicate that
a stream should be fully buffered.
***/
/*
STDC(1)
*/
|