aboutsummaryrefslogtreecommitdiff
path: root/gdb/coff-solib.h
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-05-28 01:12:42 +0000
committerKevin Buettner <kevinb@redhat.com>2000-05-28 01:12:42 +0000
commita14ed312fd86dd2c862847230931451da2e49942 (patch)
treee7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/coff-solib.h
parent3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff)
downloadfsf-binutils-gdb-a14ed312fd86dd2c862847230931451da2e49942.zip
fsf-binutils-gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz
fsf-binutils-gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2
PARAMS removal.
Diffstat (limited to 'gdb/coff-solib.h')
-rw-r--r--gdb/coff-solib.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/gdb/coff-solib.h b/gdb/coff-solib.h
index e1a6758..3b65da8 100644
--- a/gdb/coff-solib.h
+++ b/gdb/coff-solib.h
@@ -27,8 +27,7 @@ struct target_ops;
#if 0
#define CLEAR_SOLIB coff_clear_solib
-extern void
-coff_clear_solib PARAMS ((void));
+extern void coff_clear_solib (void);
#endif
/* Called to add symbols from a shared library to gdb's symbol table. */
@@ -36,8 +35,7 @@ coff_clear_solib PARAMS ((void));
#define SOLIB_ADD(filename, from_tty, targ) \
coff_solib_add (filename, from_tty, targ)
-extern void
-coff_solib_add PARAMS ((char *, int, struct target_ops *));
+extern void coff_solib_add (char *, int, struct target_ops *);
/* Function to be called when the inferior starts up, to discover the names
of shared libraries that are dynamically linked, the base addresses to
@@ -46,8 +44,7 @@ coff_solib_add PARAMS ((char *, int, struct target_ops *));
#define SOLIB_CREATE_INFERIOR_HOOK(PID) coff_solib_create_inferior_hook()
-extern void
-coff_solib_create_inferior_hook PARAMS ((void)); /* solib.c */
+extern void coff_solib_create_inferior_hook (void); /* solib.c */
/* Function to be called to remove the connection between debugger and
dynamic linker that was established by SOLIB_CREATE_INFERIOR_HOOK.
@@ -185,6 +182,5 @@ coff_solib_create_inferior_hook PARAMS ((void)); /* solib.c */
#if 0
#define DISABLE_UNSETTABLE_BREAK(addr) coff_solib_address(addr)
-extern int
-solib_address PARAMS ((CORE_ADDR)); /* solib.c */
+extern int solib_address (CORE_ADDR); /* solib.c */
#endif