summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2010-01-13 16:35:48 -0500
committerFrank Ch. Eigler <fche@elastic.org>2010-01-13 16:35:48 -0500
commit4732f8a465430d9c3775f83ec8d11028ebd3eddd (patch)
treeea9d227d02f6b3c317bf0732ca18e5f98bebcc16
parent500e8104647413aa7f1cb0278dbcd0c57d6f1786 (diff)
downloadsystemtap-steved-4732f8a465430d9c3775f83ec8d11028ebd3eddd.tar.gz
systemtap-steved-4732f8a465430d9c3775f83ec8d11028ebd3eddd.tar.xz
systemtap-steved-4732f8a465430d9c3775f83ec8d11028ebd3eddd.zip
build fix: rhbz55060: stdlib.h vs sys/wait.h __WAIT_STATUS conflicts
-rw-r--r--doc/SystemTap_Tapset_Reference/docproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/SystemTap_Tapset_Reference/docproc.c b/doc/SystemTap_Tapset_Reference/docproc.c
index 35bdc68b..840d1df7 100644
--- a/doc/SystemTap_Tapset_Reference/docproc.c
+++ b/doc/SystemTap_Tapset_Reference/docproc.c
@@ -35,13 +35,13 @@
*/
#include <stdio.h>
-#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <limits.h>
-#include <sys/types.h>
#include <sys/wait.h>
+#include <sys/types.h>
+#include <stdlib.h>
/* exitstatus is used to keep track of any failing calls to kernel-doc,
* but execution continues. */