mirror of
https://github.com/encounter/newlib.git
synced 2026-03-30 11:31:09 -07:00
11 lines
220 B
C
11 lines
220 B
C
#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;
|
|
}
|