aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/posix/execv.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/posix/execv.c')
-rw-r--r--newlib/libc/posix/execv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/posix/execv.c b/newlib/libc/posix/execv.c
index 96220dd..6a1052c 100644
--- a/newlib/libc/posix/execv.c
+++ b/newlib/libc/posix/execv.c
@@ -14,8 +14,7 @@
static char ***p_environ = &environ;
int
-_DEFUN (execv, (path, argv),
- const char *path,
+execv (const char *path,
char * const argv[])
{
return _execve (path, (char * const *) argv, *p_environ);