]> git.gag.com Git - fw/sdcc/blob - src/spawn.h
* src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
[fw/sdcc] / src / spawn.h
1 #ifdef __DJGPP__
2 /* They exist in DOS */
3 #include <process.h>
4 #else
5 /* Specially defined for UNIX and Cygwin */
6 int spawnv (int mode, const char *path, char *const argv[]);
7 int spawnvp (int mode, const char *path, char *const argv[]);
8
9 #define P_WAIT    1
10 #define P_NOWAIT  2             /* always generates error for DJGPP! */
11 #define P_OVERLAY 3
12
13 #endif