repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Declare malloc, free, and atexit if inhibit_libc is defined.
[official-gcc.git]
/
libiberty
/
vfork.c
blob
86c45919f660f5a6ba106f3035a5908819eac38b
1
/* Emulate vfork using just plain fork, for systems without a real vfork.
2
This function is in the public domain. */
3
4
int
5
vfork
()
6
{
7
return
(
fork
());
8
}