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