summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-12 17:23:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-10-12 17:23:28 +0000
commitd2018142cec61eb2dff918cfbe31beedbab003c5 (patch)
treefb549bdee1d8a056a6c19724e7cb7eec80f54fde
parentAdded opendir and readdir. (diff)
downloadrtems-d2018142cec61eb2dff918cfbe31beedbab003c5.tar.bz2
Removed fork(), execv(), and wait() since they are now stubbed in the
POSIX API.
-rw-r--r--c/src/lib/libc/syscalls.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/c/src/lib/libc/syscalls.c b/c/src/lib/libc/syscalls.c
index 6ecd8a0f17..e97034ddba 100644
--- a/c/src/lib/libc/syscalls.c
+++ b/c/src/lib/libc/syscalls.c
@@ -94,27 +94,6 @@ char *getcwd( char *_buf, size_t _size)
errno = ENOSYS;
return 0;
}
-
-int fork() {
- puts( "fork -- not supported!!!" );
- assert( 0 );
- 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 );
- errno = ENOSYS;
- return -1;
-}
#endif
#endif