2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function setvbuf().
13 /*****************************************************************************
42 ******************************************************************************/
54 case _IOFBF
: mode
= BUF_FULL
; break;
55 case _IOLBF
: mode
= BUF_LINE
; break;
56 case _IONBF
: mode
= BUF_NONE
; break;
62 desc
= __getfdesc(stream
->fd
);
69 return SetVBuf(desc
->fcb
->fh
, buf
, mode
, size
? size
: -1);