diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/config/ns32k/tm-umax.h | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | binutils-gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz |
PARAMS removal.
Diffstat (limited to 'gdb/config/ns32k/tm-umax.h')
-rw-r--r-- | gdb/config/ns32k/tm-umax.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/config/ns32k/tm-umax.h b/gdb/config/ns32k/tm-umax.h index 392d3285cf0..db8c978177a 100644 --- a/gdb/config/ns32k/tm-umax.h +++ b/gdb/config/ns32k/tm-umax.h @@ -34,7 +34,7 @@ /* Advance PC across any function entry prologue instructions to reach some "real" code. */ -extern CORE_ADDR umax_skip_prologue PARAMS ((CORE_ADDR)); +extern CORE_ADDR umax_skip_prologue (CORE_ADDR); #define SKIP_PROLOGUE(pc) (umax_skip_prologue (pc)) /* Immediately after a function call, return the saved pc. @@ -232,7 +232,7 @@ extern CORE_ADDR ns32k_get_enter_addr (); ways in the stack frame. sp is even more special: the address we return for it IS the sp for the next frame. */ -extern int umax_frame_num_args PARAMS ((struct frame_info * fi)); +extern int umax_frame_num_args (struct frame_info *fi); #define FRAME_NUM_ARGS(fi) (umax_frame_num_args ((fi))) /* Things needed for making the inferior call functions. */ |