From d37ea46231601c70b85412e680e81ea248877618 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 11 May 1998 17:39:38 +0000 Subject: [PATCH] execv*() now comes from newlib. --- c/src/lib/libc/syscalls.c | 2 ++ 1 file changed, 2 insertions(+) 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 );