diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2001-01-25 22:35:01 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2001-01-25 22:35:01 +0000 |
commit | 5e1929692914eacff0733af0110def0fd3b97a4b (patch) | |
tree | d3bb0495c290ae582af078ba2cea700d50f317c8 | |
parent | 8714075803892f2e6131fb846b537c5f9c78af3f (diff) | |
download | gdb-5e1929692914eacff0733af0110def0fd3b97a4b.tar.gz |
* win32-nat.c (_initialize_core_win32): Prototype correctly.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/win32-nat.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0c6d5248be4..d003c5812c4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2001-01-25 Christopher Faylor <cgf@cygnus.com> + + * win32-nat.c (_initialize_core_win32): Prototype correctly. + 2001-01-25 Mark Kettenis <kettenis@gnu.org> * config/alpha/tm-fbsd.h: Update copyright. diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index 10d6bd8c98d..3458988e4fa 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -1657,7 +1657,7 @@ static struct core_fns win32_elf_core_fns = }; void -_initialize_core_win32 () +_initialize_core_win32 (void) { add_core_fns (&win32_elf_core_fns); } |