diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-11-25 23:04:23 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-11-25 23:04:23 -0500 |
commit | a8da6c2f287037cbacc65578a268f355760eaf8e (patch) | |
tree | e325def382b70f767adfa8ac844ee899936eacf4 /arch/powerpc/bits | |
parent | 4b75f4ed8d08b26d4bf2ac96191b395218ad888e (diff) | |
download | musl-a8da6c2f287037cbacc65578a268f355760eaf8e.tar.gz musl-a8da6c2f287037cbacc65578a268f355760eaf8e.tar.bz2 musl-a8da6c2f287037cbacc65578a268f355760eaf8e.tar.xz musl-a8da6c2f287037cbacc65578a268f355760eaf8e.zip |
fixup mcontext stuff to expost gregset_t/fpregset_t as appropriate
Diffstat (limited to 'arch/powerpc/bits')
-rw-r--r-- | arch/powerpc/bits/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/bits/signal.h b/arch/powerpc/bits/signal.h index 7ee38fba..81012d5b 100644 --- a/arch/powerpc/bits/signal.h +++ b/arch/powerpc/bits/signal.h @@ -3,7 +3,7 @@ #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) -typedef unsigned long gregset_t[48]; +typedef unsigned long greg_t, gregset_t[48]; typedef struct { double fpregs[32]; |