Merge pull request #203 from greg-king5/multi-comments

Change multi-line C comments in files that were missed by a previous pull request.
This commit is contained in:
Oliver Schmidt
2015-08-31 17:36:02 +02:00
2 changed files with 14 additions and 14 deletions

View File

@@ -38,7 +38,7 @@
/* Mode argument for spawn. This value is ignored by the function and only /* 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 #ifndef P_WAIT
#define P_WAIT 0 #define P_WAIT 0
@@ -56,9 +56,9 @@ int spawnvp (int Mode attribute ((unused)),
const char* File attribute ((unused)), const char* File attribute ((unused)),
char* const argv []) 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
* on errors. ** on errors.
*/ */
{ {
int Status; int Status;

View File

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