diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-05-14 18:09:05 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-05-14 18:09:05 +0000 |
commit | 183a2f1a42f04d5ba412642a8338ab4e38a97f28 (patch) | |
tree | 08afb26d297c0c50085054b85d992cf3933e3af9 | |
parent | 24a7a601e25521c77a9116d5a78cc75adb6e7624 (diff) | |
download | gdb-183a2f1a42f04d5ba412642a8338ab4e38a97f28.zip gdb-183a2f1a42f04d5ba412642a8338ab4e38a97f28.tar.gz gdb-183a2f1a42f04d5ba412642a8338ab4e38a97f28.tar.bz2 |
Fix no_shared_libraries() declaration.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/solib.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f1f8a44..0cce95e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-05-14 Kevin Buettner <kevinb@redhat.com> + + * solib.h (no_shared_libraries): Make declaration match definition + in solib.c. + 2001-05-14 Andrew Cagney <ac131313@redhat.com> * remote.c (remote_write_bytes): Set nr_bytes before returning it. diff --git a/gdb/solib.h b/gdb/solib.h index 05e0cb7..2da8460 100644 --- a/gdb/solib.h +++ b/gdb/solib.h @@ -194,4 +194,4 @@ extern char *solib_address (CORE_ADDR); /* solib.c */ extern int in_solib_dynsym_resolve_code (CORE_ADDR); /* solib.c */ -extern int no_shared_libraries (char *ignored, int from_tty); +extern void no_shared_libraries (char *ignored, int from_tty); |