Beautified (indented) compiler source tree
[fw/sdcc] / src / spawn.h
index 4d0be57293c302a4bb2d8b342f4cc34ad8effbbd..3e700dc5178e4da2bf67460e2cf365d13eaf78d1 100644 (file)
@@ -3,11 +3,11 @@
 #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[]);
+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_NOWAIT  2            /* always generates error for DJGPP! */
 #define P_OVERLAY 3
 
 #endif