diff options
author | Dave Brolley <brolley@redhat.com> | 2009-12-01 15:10:06 -0500 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-12-01 15:10:06 -0500 |
commit | 8c859ce37271f35d0b93cd40f121af7b04621238 (patch) | |
tree | c4eaaf566f39be9834a99e03ffd07b8f7ec84979 /runtime/staprun/staprun_funcs.c | |
parent | 9b66e023ce3f320cb560ab6e2cc78a219e262c5e (diff) | |
download | systemtap-steved-8c859ce37271f35d0b93cd40f121af7b04621238.tar.gz systemtap-steved-8c859ce37271f35d0b93cd40f121af7b04621238.tar.xz systemtap-steved-8c859ce37271f35d0b93cd40f121af7b04621238.zip |
Make sure system types are defined.
Diffstat (limited to 'runtime/staprun/staprun_funcs.c')
-rw-r--r-- | runtime/staprun/staprun_funcs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/staprun/staprun_funcs.c b/runtime/staprun/staprun_funcs.c index 26e8c663..9d623c02 100644 --- a/runtime/staprun/staprun_funcs.c +++ b/runtime/staprun/staprun_funcs.c @@ -11,8 +11,6 @@ */ #include "config.h" -#include "staprun.h" -#include "modverify.h" #include <sys/mount.h> #include <sys/utsname.h> @@ -20,6 +18,9 @@ #include <pwd.h> #include <assert.h> +#include "staprun.h" +#include "modverify.h" + typedef int (*check_module_path_func)(const char *module_path, int module_fd); extern long init_module(void *, unsigned long, const char *); |