From: Greg King Date: Sun, 30 Aug 2015 12:43:54 +0000 (-0400) Subject: Changed multi-line C comments in files that I missed in commit 0390c34e88e9512b81ce35... X-Git-Tag: V2.16~235^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;ds=sidebyside;h=58e56ba24deb6d63d068a9655217358fbe795b26;p=cc65 Changed multi-line C comments in files that I missed in commit 0390c34e88e9512b81ce35a9ba36d137d1c80c44. --- diff --git a/src/cl65/spawn-amiga.inc b/src/cl65/spawn-amiga.inc index 5d1b60ea3..443f42c1f 100644 --- a/src/cl65/spawn-amiga.inc +++ b/src/cl65/spawn-amiga.inc @@ -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; diff --git a/src/cl65/spawn-unix.inc b/src/cl65/spawn-unix.inc index fc5125c34..1045f7759 100644 --- a/src/cl65/spawn-unix.inc +++ b/src/cl65/spawn-unix.inc @@ -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); }