Revision: | 2.1 |
Committed: | Thu Mar 19 09:31:04 1992 UTC (33 years, 1 month ago) by greg |
Content type: | text/plain |
Branch: | MAIN |
Log Message: | Initial revision |
# | Content |
---|---|
1 | /* Copyright (c) 1992 Regents of the University of California */ |
2 | |
3 | /* SCCSid "$SunId$ LBL" */ |
4 | |
5 | /* |
6 | * Header for routines using vfork() system call. |
7 | */ |
8 | |
9 | #ifdef BSD |
10 | |
11 | #ifdef sparc |
12 | #include "/usr/include/vfork.h" |
13 | #else |
14 | extern int vfork(); |
15 | #endif |
16 | |
17 | #else |
18 | |
19 | extern int fork(); |
20 | |
21 | #define vfork fork |
22 | |
23 | #endif |