Files
rt-thread/components/libc/newlib/syscalls.c
T
2010-04-09 09:38:09 +00:00

9 lines
122 B
C

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