start service tasks separately in-case platforms need to perform additional set-up...
[AROS.git] / compiler / posixc / setbuf.c
blob4653102bad98a98fb8c7e9825c7cba8f08734c89
1 /*
2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 C99 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 */