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 | 7445d1e6a63730fa89978d81b08c86588a85cdbe (patch) | |
tree | 5f846bfc5b57f60502b379ca80e74ae61734a16f /gdb/defs.h | |
parent | 3bf69f878e973bdf9d347fa6399d2d5e8b3c4192 (diff) | |
download | gdb-7445d1e6a63730fa89978d81b08c86588a85cdbe.tar.gz |
* 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
diff --git a/gdb/defs.h b/gdb/defs.h index 56045d6d5a6..274cacc495a 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -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. */ |