syscalls.c 122 B

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