home *** CD-ROM | disk | FTP | other *** search
- /* defines for spawnve, etc. */
-
- #ifndef _PROCESS_H
- #define _PROCESS_H
-
-
- #define P_WAIT 0
- #define P_NOWAIT 1
- #define P_OVERLAY 2
-
- #ifndef _COMPILER_H
- #include <compiler.h>
- #endif
-
- __EXTERN int spawnv __PROTO((int, char *, char **));
- __EXTERN int spawnve __PROTO((int, char *, char **, char **));
- __EXTERN int _spawnve __PROTO((int, char *, char **, char **));
- __EXTERN int spawnvp __PROTO((int, char *, char **));
- __EXTERN int spawnle __PROTO((int, char *, ...));
- __EXTERN int spawnl __PROTO((int, char *, ...));
- __EXTERN int spawnlp __PROTO((int, char *, ...));
-
- #endif /* _PROCESS_H */
-