blob: 215bf26bec2da3859aa1c175c184e7e7b6f40255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#define _IONBF (3)
/** no buffering **/
/***
is used as the ARGUMENT(mode) in calls to FUNCTION(setvbuf) to indicate that
a stream should be unbuffered.
***/
/*
STDC(1)
*/
|