]> git.sur5r.net Git - cc65/commitdiff
Changed multi-line C comments in files that I missed in commit 0390c34e88e9512b81ce35... 203/head
authorGreg King <gregdk@users.sf.net>
Sun, 30 Aug 2015 12:43:54 +0000 (08:43 -0400)
committerGreg King <gregdk@users.sf.net>
Sun, 30 Aug 2015 12:43:54 +0000 (08:43 -0400)
src/cl65/spawn-amiga.inc
src/cl65/spawn-unix.inc

index 5d1b60ea3ab0cae6da16d86d0c88e50d2d3f7d98..443f42c1fae3a8a37647d5bf940ff7c1e57f6bb6 100644 (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;
index fc5125c340529e5ba8a869e02b41055d598f0acb..1045f7759f7cb12d009712e14c596efd6ab66980 100644 (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
 
 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);
 }