Fixed UHCI port bits for big endian machines.
[cake.git] / compiler / clib / pclose.c
blob517c5ce59d9b276ef0c7bd07151b13dbb01dd333
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 # warning Implement pclose()
44 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
46 return -1;
47 } /* pclose() */