From e72d8a4fd411cf49510cb014b00a558def49f505 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:13:37 +0000 Subject: [PATCH] AIX implementation of execve. --- sysdeps/unix/sysv/aix/execve.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sysdeps/unix/sysv/aix/execve.c diff --git a/sysdeps/unix/sysv/aix/execve.c b/sysdeps/unix/sysv/aix/execve.c new file mode 100644 index 0000000..ea1b67d --- /dev/null +++ b/sysdeps/unix/sysv/aix/execve.c @@ -0,0 +1,8 @@ +/* This is a system call. We only have to provide the wrapper. */ +#include + +int +__execve (const char *path, char *const argv[], char *const envp[]) +{ + return execve (path, argv, envp); +} -- 2.7.4