diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-11-20 02:06:19 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-11-20 02:06:19 +0000 |
commit | 76995688e80b6e1b23a39c86325c09de446bc392 (patch) | |
tree | 9662cb45a84923439021a369e430e5c9817a9d37 /gdb/defs.h | |
parent | 896f186799a2bfa3a154e904abceaee4496933b9 (diff) | |
download | gdb-76995688e80b6e1b23a39c86325c09de446bc392.zip gdb-76995688e80b6e1b23a39c86325c09de446bc392.tar.gz gdb-76995688e80b6e1b23a39c86325c09de446bc392.tar.bz2 |
Replace asprintf() / vasprintf() with xasprintf() xvasprintf().
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -835,6 +835,11 @@ extern PTR xmmalloc (PTR, long); extern PTR xmrealloc (PTR, PTR, long); #endif +/* Like asprintf/vasprintf but get an internal_error if the call + fails. */ +extern void xasprintf (char **ret, const char *format, ...) ATTR_FORMAT (printf, 2, 3); +extern void xvasprintf (char **ret, const char *format, va_list ap); + extern int parse_escape (char **); /* Message to be printed before the error message, when an error occurs. */ |