summaryrefslogtreecommitdiffstats
path: root/newlib/libc/posix/execve.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/posix/execve.c')
-rw-r--r--newlib/libc/posix/execve.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/newlib/libc/posix/execve.c b/newlib/libc/posix/execve.c
index 1be0ed128..8083c03b0 100644
--- a/newlib/libc/posix/execve.c
+++ b/newlib/libc/posix/execve.c
@@ -8,7 +8,10 @@
int
-execve (const char *path, char * const argv[], char * const envp[])
+_DEFUN(execve, (path, argv, envp),
+ const char *path _AND
+ char * const argv[] _AND
+ char * const envp[])
{
return _execve (path, argv, envp);
}