Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_fork.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ace14096faa0011d31d7ae6141b8a3c70574506 (plain)
1
2
3
4
5
6
7
8
9
10
#include <machine/syscall.h>
#include "internal_syscall.h"

/* Create a new process. Minimal implementation for a system without
   processes from newlib documentation.  */
int _fork()
{
  errno = EAGAIN;
  return -1;
}