rt-thread/components/libc/newlib/syscalls.c

9 lines
122 B
C
Raw Normal View History

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