9 lines
122 B
C
9 lines
122 B
C
|
#include <reent.h>
|
||
|
|
||
|
int _fork_r (struct _reent *ptr)
|
||
|
{
|
||
|
/* return "not supported" */
|
||
|
ptr->errno = ENOTSUP;
|
||
|
return -1;
|
||
|
}
|