summaryrefslogtreecommitdiff
path: root/arch/powerpc/bits/signal.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-11-21 13:50:40 -0500
committerRich Felker <dalias@aerifal.cx>2012-11-21 13:50:40 -0500
commit808f225b7c60e24611dfe3df9f02538ec32a3fe6 (patch)
tree0dfe6326b49b3f7732cb0f7c3ba7e903633f50c6 /arch/powerpc/bits/signal.h
parentb5e3832f85bd818794b0f5f08a2a0ce31a4bba57 (diff)
downloadmusl-808f225b7c60e24611dfe3df9f02538ec32a3fe6.tar.gz
fix misordered typedefs in ppc signal.h
Diffstat (limited to 'arch/powerpc/bits/signal.h')
-rw-r--r--arch/powerpc/bits/signal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/bits/signal.h b/arch/powerpc/bits/signal.h
index 56b599ef..7be1028a 100644
--- a/arch/powerpc/bits/signal.h
+++ b/arch/powerpc/bits/signal.h
@@ -3,6 +3,8 @@
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
+typedef unsigned long gregset_t[48];
+
struct sigcontext
{
unsigned long _unused[4];
@@ -16,8 +18,6 @@ struct sigcontext
long vmx_reserve[33+33+32+1]; /* 33=34 for ppc64 */
};
-typedef unsigned long gregset_t[48];
-
typedef struct {
double fpregs[32];
double fpscr;