use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / pclose.c
blobe3a4045536d7d62244b3adad4012619afecd292f
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
32 EXAMPLE
34 BUGS
36 SEE ALSO
37 popen()
39 INTERNALS
41 ******************************************************************************/
43 /* Implement pclose() */
44 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
45 errno = ENOSYS;
47 return -1;
48 } /* pclose() */