diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-02-09 10:47:37 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-02-09 10:47:37 +0000 |
commit | 11308a418750be8c278a57f02f96971da49b08ef (patch) | |
tree | 2c895b171a17ca862401d571fcc13f2b46f5b5a4 /gdb/mi | |
parent | ac8b6cc0b03c3eb99f573195653a718437a10477 (diff) | |
download | gdb-11308a418750be8c278a57f02f96971da49b08ef.zip gdb-11308a418750be8c278a57f02f96971da49b08ef.tar.gz gdb-11308a418750be8c278a57f02f96971da49b08ef.tar.bz2 |
2003-02-09 Andrew Cagney <ac131313@redhat.com>
* interps.c (clear_interpreter_hooks): Convert function definition
to ISO C.
Index: mi/ChangeLog
2003-02-09 Andrew Cagney <ac131313@redhat.com>
* mi-interp.c (mi_remove_notify_hooks): Convert function
definition to ISO C.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/mi/mi-interp.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/mi/ChangeLog b/gdb/mi/ChangeLog index 93b55d7..fdc6b4d 100644 --- a/gdb/mi/ChangeLog +++ b/gdb/mi/ChangeLog @@ -1,3 +1,8 @@ +2003-02-09 Andrew Cagney <ac131313@redhat.com> + + * mi-interp.c (mi_remove_notify_hooks): Convert function + definition to ISO C. + 2003-02-06 Andrew Cagney <ac131313@redhat.com> * mi-cmd-env.c: Include "gdb_stat.h" instead of <sys/stat.h>. diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index bf5873a..87ed17f 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -285,7 +285,7 @@ mi_insert_notify_hooks (void) } static void -mi_remove_notify_hooks () +mi_remove_notify_hooks (void) { query_hook = NULL; } |