home *** CD-ROM | disk | FTP | other *** search
- /*_ process.h Mon Feb 22 1988 Modified by: Walter Bright */
- /* Copyright (C) 1988 by Northwest Software */
- /* All Rights Reserved */
- /* Written by Walter Bright */
-
- void _exit(int);
-
- int spawnl(int,char *,char *,...);
- int spawnv(int,char *,char **);
- int spawnlp(int,char *,char *,...);
- int spawnvp(int,char *,char **);
-
- int execl(char *,char *,...);
- int execv(char *,char **);
- int execlp(char *,char *,...);
- int execvp(char *,char **);
-