diff options
author | William Cohen <wcohen@redhat.com> | 2010-01-13 23:23:26 -0500 |
---|---|---|
committer | William Cohen <wcohen@redhat.com> | 2010-01-13 23:23:26 -0500 |
commit | 95fe80a2100221faeb269c7d8319567def08295e (patch) | |
tree | 3a65cbc3129482f0224f882511444cfa8c90ee4e /doc/SystemTap_Tapset_Reference/docproc.c | |
parent | cc52276b5ecd4501271d3846ad3519c7db03b54f (diff) | |
parent | 3c5b8e2b99a772e3d19d6c4bf26b3a06037523a4 (diff) | |
download | systemtap-steved-95fe80a2100221faeb269c7d8319567def08295e.tar.gz systemtap-steved-95fe80a2100221faeb269c7d8319567def08295e.tar.xz systemtap-steved-95fe80a2100221faeb269c7d8319567def08295e.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'doc/SystemTap_Tapset_Reference/docproc.c')
-rw-r--r-- | doc/SystemTap_Tapset_Reference/docproc.c | 4 |
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. */ |