compiler/clib: Removed unused arosc_init.h file.
[AROS.git] / compiler / clib / setbuf.c
blob4b8903334ed09e8316a57c0cd2b790890f291d33
1 /*
2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function setbuf().
6 */
8 /*****************************************************************************
10 NAME */
11 #include <stdio.h>
13 void setbuf (
15 /* SYNOPSIS */
16 FILE *stream,
17 char *buf)
19 /* FUNCTION
21 INPUTS
23 RESULT
25 NOTES
26 This is a simpler alias for setvbuf() according to manpage.
28 EXAMPLE
30 BUGS
32 SEE ALSO
34 INTERNALS
36 ******************************************************************************/
38 setvbuf(stream, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
39 } /* setbuf */