home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / PROCESS / SPAWNVP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  241 b   |  10 lines

  1. /* spawnvp.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <stddef.h>
  4. #include <process.h>
  5.  
  6. int spawnvp (int mode, const char *name, const char * const *argv)
  7. {
  8.   return (spawnvpe (mode, name, argv, NULL));
  9. }
  10.