diff options
Diffstat (limited to 'newlib/libc/posix/execv.c')
-rw-r--r-- | newlib/libc/posix/execv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/posix/execv.c b/newlib/libc/posix/execv.c index 5effb9c..8793e2e 100644 --- a/newlib/libc/posix/execv.c +++ b/newlib/libc/posix/execv.c @@ -1,3 +1,5 @@ +#ifndef _NO_EXECVE + /* execv.c */ /* This and the other exec*.c files in this directory require @@ -18,3 +20,5 @@ _DEFUN (execv, (path, argv), { return _execve (path, (char * _CONST *) argv, *p_environ); } + +#endif /* !_NO_EXECVE */ |