add a missing section header table index conversion
[tangerine.git] / compiler / clib / wait.c
blob2da8432fefe5b0e12ac5e551be0f3f0df3a02bc6
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include <sys/types.h>
9 #include <sys/wait.h>
10 #include <errno.h>
12 pid_t wait(int *status)
14 # warning Implement wait()
15 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
17 errno = EPERM;
18 return -1;