add a missing section header table index conversion
[tangerine.git] / compiler / clib / execvp.c
blob531e6fad3ca31d3ae3ca242b3bf05da008908b08
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function execvp().
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 execvp(
21 /* SYNOPSIS */
22 const char *file,
23 char *const argv[])
25 /* FUNCTION
27 INPUTS
29 RESULT
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
39 INTERNALS
41 ******************************************************************************/
43 # warning Implement execvp()
44 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
46 return -1;
47 } /* execvp() */