add newlib directory

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@594 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong 2010-04-09 09:38:09 +00:00
parent c416348020
commit 01149ddd0e
1 changed files with 8 additions and 0 deletions

View File

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