- Made pciuhci.device and pciehci.device compile again: completed
[AROS.git] / compiler / clib / setlinebuf.c
blobf1100880968d8ad8e306692140facde6b732c08c
1 /*
2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 BSD legacy function setlinebuf().
6 Function is deprecated and not part of POSIX standard.
7 */
9 /*****************************************************************************
11 NAME */
12 #include <stdio.h>
14 void setlinebuf (
16 /* SYNOPSIS */
17 FILE *stream)
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, (char *)NULL, _IOLBF, 0);
39 } /* setlinebuf */