diff options
Diffstat (limited to 'gdb/config/mips/tm-embed.h')
-rw-r--r-- | gdb/config/mips/tm-embed.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/config/mips/tm-embed.h b/gdb/config/mips/tm-embed.h index 9e0ac8600f1..faaffee294d 100644 --- a/gdb/config/mips/tm-embed.h +++ b/gdb/config/mips/tm-embed.h @@ -33,11 +33,11 @@ #define target_insert_watchpoint(addr, len, type) \ remote_mips_set_watchpoint (addr, len, type) -int remote_mips_set_watchpoint PARAMS ((CORE_ADDR addr, int len, int type)); +int remote_mips_set_watchpoint (CORE_ADDR addr, int len, int type); #define target_remove_watchpoint(addr, len, type) \ remote_mips_remove_watchpoint (addr, len, type) -int remote_mips_remove_watchpoint PARAMS ((CORE_ADDR addr, int len, int type)); +int remote_mips_remove_watchpoint (CORE_ADDR addr, int len, int type); /* We need to remove watchpoints when stepping, else we hit them again! */ @@ -48,4 +48,4 @@ int remote_mips_stopped_by_watchpoint (void); #define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) \ remote_mips_can_use_hardware_watchpoint(cnt) -int remote_mips_can_use_hardware_watchpoint PARAMS ((int cnt)); +int remote_mips_can_use_hardware_watchpoint (int cnt); |