From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:13:37 +0000 (+0000) Subject: AIX implementation of execve. X-Git-Tag: upstream/2.30~10627^2~2627 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e72d8a4fd411cf49510cb014b00a558def49f505;p=external%2Fglibc.git AIX implementation of execve. --- 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); +}