home *** CD-ROM | disk | FTP | other *** search
- /*
- * XSPAWN
- * Version 1.33
- * (C) Copyright 1990 Whitney Software, Inc.
- * All Rights Reserved
- */
-
- #include <stdio.h>
- #include "xspawnp.h"
-
- int xspawnl( modeflag, path, arglist )
- int modeflag; /* execution mode for parent process */
- char *path; /* file to be executed */
- char *arglist; /* list of pointers to arguments */
- {
- return( xspawnve( modeflag, path, &arglist, NULL ));
- }