blob: 31a171dd20276181bae8638e0f72201850248354 [file] [log] [blame]
/*
* execvp.c
*/
#include <stdarg.h>
#include <unistd.h>
int execvp(const char *path, char * const * argv)
{
return execvpe(path, argv, environ);
}