]> git.sur5r.net Git - cc65/commitdiff
Adjusted spawn files to recent change.
authorOliver Schmidt <ol.sc@web.de>
Mon, 3 Mar 2014 21:26:08 +0000 (22:26 +0100)
committerOliver Schmidt <ol.sc@web.de>
Mon, 3 Mar 2014 21:26:08 +0000 (22:26 +0100)
src/cl65/spawn-amiga.inc
src/cl65/spawn-unix.inc
src/cl65/spawn.h

index 4a0278cfacbe72fe0c70932d97c26f2a634f9a9c..b244a95ac1f299f94961d4bf8ede9db5746b5d7c 100644 (file)
@@ -54,7 +54,7 @@
 
 int spawnvp (int Mode attribute ((unused)),
              const char* File attribute ((unused)),
-             char* const argv [])
+             const char* const argv [])
 /* Execute the given program searching and wait til it terminates. The Mode
  * argument is ignored (compatibility only). The result of the function is
  * the return code of the program. The function will terminate the program
index a0334b8dbc0930640431365a71652ab268b9ebb7..093e35935e935573de1fb30b881f2de975c807d5 100644 (file)
@@ -62,7 +62,7 @@
 
 
 
-int spawnvp (int Mode attribute ((unused)), const char* File, char* const argv [])
+int spawnvp (int Mode attribute ((unused)), const char* File, const char* const argv [])
 /* Execute the given program searching and wait til it terminates. The Mode
  * argument is ignored (compatibility only). The result of the function is
  * the return code of the program. The function will terminate the program
index 6e75f555d57ee3488e484c0dca191f286396b5b0..a9f5d7c3f05942f2a8f4df1d541ff0cec3afac54 100644 (file)
@@ -59,7 +59,7 @@
 
 
 
-int spawnvp (int Mode, const char* File, char* const argv []);
+int spawnvp (int Mode, const char* File, const char* const argv []);
 /* Execute the given program searching and wait til it terminates. The Mode
  * argument is ignored (compatibility only). The result of the function is
  * the return code of the program. The function will terminate the program