use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / setbuf.c
blob375e16a7fc834b3099316f8158c63b48bd748102
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function setbuf().
6 */
8 #define setbuf setbuf
10 /*****************************************************************************
12 NAME */
13 #include <stdio.h>
15 void setbuf (
17 /* SYNOPSIS */
18 FILE *stream,
19 char *buf)
21 /* FUNCTION
23 INPUTS
25 RESULT
27 NOTES
28 This is a simpler alias for setvbuf() according to manpage.
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 ******************************************************************************/
40 setvbuf(stream, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
41 } /* setbuf */