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/signal.h | |
parent | make sys/procfs.h mostly work on most archs (diff) | |
download | grovel-a8da6c2f287037cbacc65578a268f355760eaf8e.tar.gz grovel-a8da6c2f287037cbacc65578a268f355760eaf8e.tar.xz |
fixup mcontext stuff to expost gregset_t/fpregset_t as appropriate
Diffstat (limited to 'arch/powerpc/bits/signal.h')
-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]; |