mirror of
https://github.com/cc65/cc65.git
synced 2024-12-30 20:29:25 +00:00
Adjusted spawn files to recent change.
This commit is contained in:
parent
50c4fd1c4c
commit
574bda3e4e
@ -54,7 +54,7 @@
|
|||||||
|
|
||||||
int spawnvp (int Mode attribute ((unused)),
|
int spawnvp (int Mode attribute ((unused)),
|
||||||
const char* File 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
|
/* Execute the given program searching and wait til it terminates. The Mode
|
||||||
* argument is ignored (compatibility only). The result of the function is
|
* argument is ignored (compatibility only). The result of the function is
|
||||||
* the return code of the program. The function will terminate the program
|
* the return code of the program. The function will terminate the program
|
||||||
|
@ -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
|
/* Execute the given program searching and wait til it terminates. The Mode
|
||||||
* argument is ignored (compatibility only). The result of the function is
|
* argument is ignored (compatibility only). The result of the function is
|
||||||
* the return code of the program. The function will terminate the program
|
* the return code of the program. The function will terminate the program
|
||||||
|
@ -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
|
/* Execute the given program searching and wait til it terminates. The Mode
|
||||||
* argument is ignored (compatibility only). The result of the function is
|
* argument is ignored (compatibility only). The result of the function is
|
||||||
* the return code of the program. The function will terminate the program
|
* the return code of the program. The function will terminate the program
|
||||||
|
Loading…
Reference in New Issue
Block a user