2 Copyright © 2008-2009, The AROS Development Team. All rights reserved.
5 POSIX function execv().
8 #include <aros/debug.h>
18 /*****************************************************************************
30 Executes a file located in given path with specified arguments.
33 path - Pathname of the file to execute.
34 argv - Array of arguments given to main() function of the executed
38 Returns -1 and sets errno appropriately in case of error, otherwise
48 execve(), execl(), execlp(), execvp()
52 ******************************************************************************/
54 APTR id
= __exec_prepare(path
, 0, argv
, environ
);
60 assert(0); /* Should not be reached */