4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-12 05:19:08 +08:00
bernard.xiong 01149ddd0e add newlib directory
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@594 bbd45198-f89e-11dd-88c7-29a3b14d5316
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;
}