gbdk-releases/sdcc/src/spawn.h
2015-01-10 16:25:09 +01:00

14 lines
345 B
C

#ifdef __DJGPP__
/* They exist in DOS */
#include <process.h>
#else
/* Specially defined for UNIX and Cygwin */
int spawnv (int mode, const char *path, char *const argv[]);
int spawnvp (int mode, const char *path, char *const argv[]);
#define P_WAIT 1
#define P_NOWAIT 2 /* always generates error for DJGPP! */
#define P_OVERLAY 3
#endif