1
0
mirror of https://github.com/cc65/cc65.git synced 2024-11-19 06:31:31 +00:00

Changed multi-line C comments in files that I missed in commit 0390c34e88.

This commit is contained in:
Greg King 2015-08-30 08:43:54 -04:00
parent a468a2e109
commit 58e56ba24d
2 changed files with 14 additions and 14 deletions

View File

@ -38,8 +38,8 @@
/* Mode argument for spawn. This value is ignored by the function and only
* provided for DOS/Windows compatibility.
*/
** provided for DOS/Windows compatibility.
*/
#ifndef P_WAIT
#define P_WAIT 0
#endif
@ -56,10 +56,10 @@ int spawnvp (int Mode attribute ((unused)),
const char* File attribute ((unused)),
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
* on errors.
*/
** argument is ignored (compatibility only). The result of the function is
** the return code of the program. The function will terminate the program
** on errors.
*/
{
int Status;
StrBuf Command = AUTO_STRBUF_INITIALIZER;

View File

@ -48,8 +48,8 @@
/* Mode argument for spawn. This value is ignored by the function and only
* provided for DOS/Windows compatibility.
*/
** provided for DOS/Windows compatibility.
*/
#ifndef P_WAIT
#define P_WAIT 0
#endif
@ -64,10 +64,10 @@
int spawnvp (int Mode attribute ((unused)), const char* File, 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
* on errors.
*/
** argument is ignored (compatibility only). The result of the function is
** the return code of the program. The function will terminate the program
** on errors.
*/
{
int Status = 0;
@ -99,7 +99,7 @@ int spawnvp (int Mode attribute ((unused)), const char* File, char* const argv [
}
/* Only the father goes here, we place a return here regardless of that
* to avoid compiler warnings.
*/
** to avoid compiler warnings.
*/
return WEXITSTATUS (Status);
}