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; }
|