summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-08-25 23:42:46 +0000
committerEric Andersen <andersen@codepoet.org>2004-08-25 23:42:46 +0000
commita77ace03480be878bd8192f084a75d2034901b66 (patch)
tree48f54cc375f350bc8a149890cd022ad6f0925b9b /libc
parent772a5004213a8c1e955b8754e1ab16845bfdcd8f (diff)
Mike Frysinger writes:
i sent this earlier but perhaps people missed it the first time around :) http://www.uclibc.org/lists/uclibc/2004-August/009544.html basically if you try to #include <sys/ucontext.h> on arm it'll fail because ucontext.h utilizes typedefs found in bits/sigcontext.h ... i386 already has this fix in uClibc find attached a trivial patch to fix this -mike
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/arm/sys/ucontext.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/sys/ucontext.h b/libc/sysdeps/linux/arm/sys/ucontext.h
index 5869edfd4..1260ee594 100644
--- a/libc/sysdeps/linux/arm/sys/ucontext.h
+++ b/libc/sysdeps/linux/arm/sys/ucontext.h
@@ -24,6 +24,7 @@
#include <features.h>
#include <signal.h>
#include <sys/procfs.h>
+#include <bits/sigcontext.h>
typedef int greg_t;