diff options
Diffstat (limited to 'include/gdb/callback.h')
-rw-r--r-- | include/gdb/callback.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/gdb/callback.h b/include/gdb/callback.h index 5ae1d00..5ac48ce 100644 --- a/include/gdb/callback.h +++ b/include/gdb/callback.h @@ -124,7 +124,11 @@ struct host_callback_struct /* Print an error message and "exit". In the case of gdb "exiting" means doing a longjmp back to the main command loop. */ - void (*error) PARAMS ((host_callback *, const char *, ...)); + void (*error) PARAMS ((host_callback *, const char *, ...)) +#ifdef __GNUC__ + __attribute__ ((__noreturn__)) +#endif + ; int last_errno; /* host format */ |