summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'riscos')
-rw-r--r--riscos/gui.c33
1 files changed, 18 insertions, 15 deletions
diff --git a/riscos/gui.c b/riscos/gui.c
index d2b964146..3f60d5777 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -275,20 +275,6 @@ static void *myrealloc(void *ptr, size_t len, void *pw)
return realloc(ptr, len);
}
-/** Normal entry point from OS */
-int main(int argc, char** argv)
-{
- setbuf(stderr, NULL);
-
- /* initialise netsurf */
- netsurf_init(argc, argv);
-
- netsurf_main_loop();
-
- netsurf_exit();
-
- return 0;
-}
/**
* Initialise the gui (RISC OS specific part).
@@ -698,7 +684,7 @@ void ro_gui_check_resolvers(void)
* Last-minute gui init, after all other modules have initialised.
*/
-void gui_init2(int argc, char** argv)
+static void gui_init2(int argc, char** argv)
{
char *url = 0;
bool open_window = option_open_browser_at_startup;
@@ -771,6 +757,23 @@ void gui_init2(int argc, char** argv)
free(url);
}
+/** Normal entry point from OS */
+int main(int argc, char** argv)
+{
+ setbuf(stderr, NULL);
+
+ /* initialise netsurf */
+ netsurf_init(argc, argv);
+
+ gui_init2(argc, argv);
+
+ netsurf_main_loop();
+
+ netsurf_exit();
+
+ return 0;
+}
+
/**
* Close down the gui (RISC OS).