mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 04:54:52 +00:00
12 lines
206 B
C
12 lines
206 B
C
#include <_ansi.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include "trap.h"
|
|
|
|
|
|
int
|
|
_execve (const char *path, char *const argv[], char *const envp[])
|
|
{
|
|
return TRAP0 (SYS_execve, path, argv, envp);
|
|
}
|