From 14e282948996f75e87a14ab90f4b3ed54d9d6ad7 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 26 Oct 2014 12:42:53 +0000 Subject: remove the die API from the core. The die() API for abnormal termination does not belong within the core of netsurf and instead errors are propogated back to the callers. This is the final part of this change and the API is now only used within some parts of the frontends --- riscos/gui.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'riscos') diff --git a/riscos/gui.h b/riscos/gui.h index 9077afeab..9e7704f39 100644 --- a/riscos/gui.h +++ b/riscos/gui.h @@ -120,6 +120,15 @@ void ro_gui_drag_box_start(wimp_pointer *pointer); bool ro_gui_prequit(void); const char *ro_gui_default_language(void); +/** + * Cause an abnormal program termination. + * + * \note This never returns and is intended to terminate without any cleanup. + * + * \param error The message to display to the user. + */ +void die(const char * const error) __attribute__ ((noreturn)); + /* in download.c */ void ro_gui_download_init(void); void ro_gui_download_datasave_ack(wimp_message *message); -- cgit v1.2.3