diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-01-31 04:10:51 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-01-31 04:10:51 +0000 |
commit | f5a96129d27df3f8e5f057b77b2d6f033843966b (patch) | |
tree | de27f1abdc7e5b626a6b888d2aa2f90891a1cd35 /gdb/defs.h | |
parent | dbc37f892b730f7fb0177770be3e3eb67ad36149 (diff) | |
download | gdb-f5a96129d27df3f8e5f057b77b2d6f033843966b.zip gdb-f5a96129d27df3f8e5f057b77b2d6f033843966b.tar.gz gdb-f5a96129d27df3f8e5f057b77b2d6f033843966b.tar.bz2 |
* defs.h (vwarning): Declare.
(warning_begin): Delete declaration.
* utils.c (vwarning): New function.
(warning): Call vwarning.
(warning_begin): Delete function.
* rs6000-nat.c (vmap_ldinfo): Use the function warning to print
the warning message.
* d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
warning_begin.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1173,6 +1173,8 @@ extern void warning_begin (void); extern void warning (const char *, ...) ATTR_FORMAT (printf, 1, 2); +extern void vwarning (const char *, va_list args); + /* Global functions from other, non-gdb GNU thingies. Libiberty thingies are no longer declared here. We include libiberty.h above, instead. */ |