From 5c817e1d386d678bca2ed4b35bb98d0895e72b43 Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Sat, 27 Sep 2003 22:05:39 +0000 Subject: [PATCH] There's a problem with including kernel-space header files on the little endian MIPS architecture. According to Ryan Murray this should help and also work on all architectures. --- ksym_mod.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ksym_mod.c b/ksym_mod.c index 344963b..6c58803 100644 --- a/ksym_mod.c +++ b/ksym_mod.c @@ -91,8 +91,10 @@ #include #if !defined(__GLIBC__) #include +#include #include #else /* __GLIBC__ */ +#include #include extern __off64_t lseek64 __P ((int __fd, __off64_t __offset, int __whence)); extern int get_kernel_syms __P ((struct kernel_sym *__table));