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.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 );