|
Last change
on this file since 435 was 10, checked in by bird, 23 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
214 bytes
|
| Line | |
|---|
| 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 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.