summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/bits
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-09-08 22:08:14 +0000
committerEric Andersen <andersen@codepoet.org>2003-09-08 22:08:14 +0000
commitda1f39786a1936c2786a3b3dbbd830624370a19a (patch)
tree80983cc032cba3fe78ee0ff6bf6bd91c041d10e7 /libc/sysdeps/linux/arm/bits
parent18638f737cc82b08b0e741ac36748520aa65ba42 (diff)
Fix a trivial compile problem
Diffstat (limited to 'libc/sysdeps/linux/arm/bits')
-rw-r--r--libc/sysdeps/linux/arm/bits/sigcontextinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/arm/bits/sigcontextinfo.h b/libc/sysdeps/linux/arm/bits/sigcontextinfo.h
index 30c2e3a6c..67167f90f 100644
--- a/libc/sysdeps/linux/arm/bits/sigcontextinfo.h
+++ b/libc/sysdeps/linux/arm/bits/sigcontextinfo.h
@@ -18,7 +18,7 @@
02111-1307 USA. */
#include <bits/armsigctx.h>
-#include "kernel-features.h"
+#include <linux/version.h>
#define SIGCONTEXT int _a2, int _a3, int _a4, union k_sigcontext
#define SIGCONTEXT_EXTRA_ARGS _a2, _a3, _a4,
@@ -26,7 +26,7 @@
/* The sigcontext structure changed between 2.0 and 2.1 kernels. On any
modern system we should be able to assume that the "new" format will be
in use. */
-#if __LINUX_KERNEL_VERSION > 131328
+#if LINUX_VERSION_CODE > 131328
#define GET_PC(ctx) ((void *) ctx.v21.arm_pc)
#define GET_FRAME(ctx) ADVANCE_STACK_FRAME ((void *) ctx.v21.arm_fp)