You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/08/10 22:19:10 UTC

svn commit: r430514 - /incubator/stdcxx/trunk/util/runall.cpp

Author: sebor
Date: Thu Aug 10 13:19:10 2006
New Revision: 430514

URL: http://svn.apache.org/viewvc?rev=430514&view=rev
Log:
2006-08-10  Martin Sebor  <se...@roguewave.com>

	* runall.cpp (<sys/wait.h>): Included for WIFEXITED() et al.

Modified:
    incubator/stdcxx/trunk/util/runall.cpp

Modified: incubator/stdcxx/trunk/util/runall.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/util/runall.cpp?rev=430514&r1=430513&r2=430514&view=diff
==============================================================================
--- incubator/stdcxx/trunk/util/runall.cpp (original)
+++ incubator/stdcxx/trunk/util/runall.cpp Thu Aug 10 13:19:10 2006
@@ -24,16 +24,16 @@
  * 
  **************************************************************************/
 
-#include <assert.h>
-#include <errno.h>
-#include <stdio.h> /* for printf, puts, FILE, f* */
-#include <stdlib.h> /* for exit, free */
-#include <string.h> /* for str* */
+#include <assert.h>     /* for assert() */
+#include <errno.h>      /* for errno */
+#include <stdio.h>      /* for fflush(), printf(), puts(), ... */
+#include <stdlib.h>     /* for exit(), free() */
+#include <string.h>     /* for memcpy(), ... */
 
-#include <ctype.h> /* for isspace */
+#include <ctype.h>      /* for isspace */
 #include <sys/types.h>
-
 #include <sys/stat.h>
+#include <sys/wait.h>   /* for WIFEXITED(), ... */
 
 #include "cmdopt.h"
 #include "exec.h"