File: bufferlines.c

package info (click to toggle)
aces3 3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 82,460 kB
  • sloc: fortran: 225,647; ansic: 20,413; cpp: 4,349; makefile: 953; sh: 137
file content (31 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

/*
 * This routine changes the size of the output buffer.
 */

#include <stdio.h>

/*
   YAU - Someone check this. `man setvbuf` says the NULL buffer is non-portable.
*/

/*
void bufferlines ()
{ setvbuf(stdout,NULL,_IOLBF,1024); return; }

void bufferlines_()
{ setvbuf(stdout,NULL,_IOLBF,1024); return; }

void BUFFERLINES ()
{ setvbuf(stdout,NULL,_IOLBF,1024); return; }
*/

void bufferlines ()
{ setlinebuf(stdout); return; }

void bufferlines_()
{ setlinebuf(stdout); return; }

void BUFFERLINES ()
{ setlinebuf(stdout); return; }