muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / pclose.c
blobd7624f2b171b453fee115e6a0c846674bc085ee1
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function pclose().
6 */
8 #include <aros/debug.h>
10 #include <fcntl.h>
11 #include <unistd.h>
12 #include <errno.h>
14 /*****************************************************************************
16 NAME */
17 #include <stdio.h>
19 int pclose(
21 /* SYNOPSIS */
22 FILE * stream)
24 /* FUNCTION
26 INPUTS
28 RESULT
30 NOTES
31 Not implemented.
33 EXAMPLE
35 BUGS
37 SEE ALSO
38 popen()
40 INTERNALS
42 ******************************************************************************/
44 /* TODO: Implement pclose() */
45 AROS_FUNCTION_NOT_IMPLEMENTED("posixc");
46 errno = ENOSYS;
48 return -1;
49 } /* pclose() */