repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2001-02-08 H.J. Lu <hjl@gnu.org>
[binutils.git]
/
libiberty
/
vfork.c
blob
5e8772100815f107d1927ab11cb253c08e8aad71
1
/* Emulate vfork using just plain fork, for systems without a real vfork.
2
This function is in the public domain. */
3
4
#include
"ansidecl.h"
5
6
extern
int
fork
PARAMS
((
void
));
7
8
int
9
vfork
()
10
{
11
return
(
fork
());
12
}