execv*() now comes from newlib.

This commit is contained in:
Joel Sherrill
1998-05-11 17:39:38 +00:00
parent 7123d3b77f
commit d37ea46231

View File

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