Upgraded GRUB2 to 2.00 release.
[AROS.git] / compiler / clib / pclose.c
blob4edf8c26f2da19758f26f0996ccd20a752eb1461
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX 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("arosc");
46 errno = ENOSYS;
48 return -1;
49 } /* pclose() */