1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* sysdeps/unix/sysv/linux/mips/sigcontextinfo.h (GET_PC): Fix typo.

	Make it compile.
This commit is contained in:
Andreas Jaeger
2000-02-08 17:27:54 +00:00
parent 8308c68b88
commit c03eebe14d
3 changed files with 7 additions and 7 deletions

View File

@ -20,6 +20,6 @@
#define SIGCONTEXT struct sigcontext
#define SIGCONTEXT_EXTRA_ARGS
#define GET_PC(ctx) ((void *) ctx.pc)
#define GET_PC(ctx) ((void *) ctx.sc_pc)
#define GET_FRAME(ctx) ((void *) ctx.sc_regs[30])
#define GET_STACK(ctx) ((void *) ctx.sc_regs[29])