syscalls.c 122 字节
Newer Older
B
bernard.xiong 已提交
1 2 3 4 5 6 7 8
#include <reent.h>

int _fork_r (struct _reent *ptr)
{
	/* return "not supported" */
	ptr->errno = ENOTSUP;
	return -1;
}