Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/iq2000/execve.c')
-rw-r--r--libgloss/iq2000/execve.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libgloss/iq2000/execve.c b/libgloss/iq2000/execve.c
new file mode 100644
index 000000000..bd6c7a2a8
--- /dev/null
+++ b/libgloss/iq2000/execve.c
@@ -0,0 +1,11 @@
+#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);
+}