repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libgloss
/
zpu
/
fork.c
blob
4e5f14886fb819384bd63c1e1dfba5a7e5d9b8dc
1
/*
2
* Stub version of fork.
3
*/
4
5
#include <_ansi.h>
6
#include <_syslist.h>
7
#include <errno.h>
8
9
int
10
_DEFUN
(
fork
, (),
11
_NOARGS
)
12
{
13
errno
=
ENOSYS
;
14
return
-
1
;
15
}