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 xspawnv( modeflag, path, argv )
- int modeflag; /* execution mode for parent process */
- char *path; /* file to be executed */
- char *argv[]; /* array of pointers to arguments */
- {
- return( xspawnve( modeflag, path, argv, NULL ));
- }