/*
 * execv.c - example of the syscall execv
 */

#include <unistd.h>


int main()
{
   int ret;
   char *cmd[] = { "ls", "-l", (char *)0 };

   ret = execv("/bin/ls", cmd);

   return 0;
}
