summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libc/syscalls.c')
-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