blob: 6665721c09fccd781ebe5ce3a4765c81c774810d [file] [log] [blame]
#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "sys/syscall.h"
int errno;
int __trap0 ();
#define TRAP0(f, p1, p2, p3) __trap0(f, (p1), (p2), (p3))
int
execv (const char *path, char *const argv[])
{
return TRAP0 (SYS_execv, path, argv, 0);
}