mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-25 13:57:15 +00:00
execv*() now comes from newlib.
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user