Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/posix/execlp.c')
-rw-r--r--newlib/libc/posix/execlp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/posix/execlp.c b/newlib/libc/posix/execlp.c
index 5252cd988..6212da629 100644
--- a/newlib/libc/posix/execlp.c
+++ b/newlib/libc/posix/execlp.c
@@ -1,3 +1,5 @@
+#ifndef _NO_EXECVE
+
/* execlp.c */
/* This and the other exec*.c files in this directory require
@@ -42,3 +44,5 @@ _DEFUN(execlp, (path, arg0, va_alist),
return execvp (path, (char * _CONST *) argv);
}
+
+#endif /* !_NO_EXECVE */