diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-24 00:12:35 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-24 00:12:35 +0000 |
commit | 482368b1a8e45430672c58c9a42e7d2004367126 (patch) | |
tree | ce2a1a567d4d62dee7c2e71a46a99cf72cf1d606 /include/asm-mips64/ptrace.h | |
parent | e4d0251c6f56ab2e191afb70f80f382793e23f74 (diff) |
Merge with 2.3.47. Guys, this is buggy as shit. You've been warned.
Diffstat (limited to 'include/asm-mips64/ptrace.h')
-rw-r--r-- | include/asm-mips64/ptrace.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-mips64/ptrace.h b/include/asm-mips64/ptrace.h index 3e61613ca..ff5745e24 100644 --- a/include/asm-mips64/ptrace.h +++ b/include/asm-mips64/ptrace.h @@ -1,4 +1,4 @@ -/* $Id: ptrace.h,v 1.2 1999/09/28 22:27:19 ralf Exp $ +/* $Id: ptrace.h,v 1.3 1999/12/04 03:59:12 ralf Exp $ * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive @@ -64,7 +64,9 @@ struct pt_regs { #ifndef __ASSEMBLY__ #define instruction_pointer(regs) ((regs)->cp0_epc) -extern void (*show_regs)(struct pt_regs *); +extern void (*_show_regs)(struct pt_regs *); +#define show_regs(regs) _show_regs(regs) + #endif /* !(__ASSEMBLY__) */ #endif |