2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
8 /*****************************************************************************
16 FILE * restrict stream
,
20 Sets a buffer associated with a stream.
23 stream: stream to set a buffer for.
24 buf: if it points to an array of at least size BUFSIZ it will be used
25 as a buffer with mode _IOFBF. If it is NULL mode will be set to
42 ******************************************************************************/
44 setvbuf(stream
, buf
, buf
? _IOFBF
: _IONBF
, BUFSIZ
);