summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-05-11 17:39:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-05-11 17:39:38 +0000
commitd37ea46231601c70b85412e680e81ea248877618 (patch)
tree3511d957099d0482549d5c10ffb2d8b7df8888aa
parentModified objcopy to remove extra sections. (diff)
downloadrtems-d37ea46231601c70b85412e680e81ea248877618.tar.bz2
execv*() now comes from newlib.
-rw-r--r--c/src/lib/libc/syscalls.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/c/src/lib/libc/syscalls.c b/c/src/lib/libc/syscalls.c
index 528e00f711..6ecd8a0f17 100644
--- a/c/src/lib/libc/syscalls.c
+++ b/c/src/lib/libc/syscalls.c
@@ -101,12 +101,14 @@ int fork() {
errno = ENOSYS;
return -1;
}
+#if 0
int execv(const char *_path, char * const _argv[] ) {
puts( "execv -- not supported!!!" );
assert( 0 );
errno = ENOSYS;
return -1;
}
+#endif
int wait() {
puts( "wait -- not supported!!!" );
assert( 0 );