2 Copyright © 2008, The AROS Development Team. All rights reserved.
5 POSIX function execv().
8 #include <aros/debug.h>
15 /*****************************************************************************
27 Executes a file located in given path with specified arguments.
30 path - Pathname of the file to execute.
31 argv - Array of arguments given to main() function of the executed
35 Returns -1 and sets errno appropriately in case of error, otherwise
45 execve(), execl(), execlp(), execvp()
49 ******************************************************************************/
51 return execve(path
, argv
, environ
);