home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / dos / process / spawnvp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-11  |  270 b   |  11 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <process.h>
  4.  
  5. extern char **environ;
  6.  
  7. int spawnvp(int mode, const char *path, char *const argv[])
  8. {
  9.   return spawnvpe(mode, path, (char * const *)argv, environ);
  10. }
  11.