From 77e487572e9d9845c9b72eae8d054b7f0a077cee Mon Sep 17 00:00:00 2001 From: David Griffith Date: Fri, 26 Jan 2018 04:10:07 -0800 Subject: [PATCH] Remove duplicate prototypes and move other stuff to a better place. --- src/curses/ux_init.c | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/src/curses/ux_init.c b/src/curses/ux_init.c index 1f5a0fd..8d8affb 100644 --- a/src/curses/ux_init.c +++ b/src/curses/ux_init.c @@ -45,19 +45,6 @@ #include "ux_frotz.h" #include "ux_blorb.h" -f_setup_t f_setup; -u_setup_t u_setup; - -static int getconfig(char *); -static int geterrmode(char *); -static int getcolor(char *); -static int getbool(char *); - -/* static void sigwinch_handler(int); */ -static void sigint_handler(int); -/* static void redraw(void); */ - - #define INFORMATION "\ An interpreter for all Infocom and other Z-Machine games.\n\ \n\ @@ -81,6 +68,13 @@ char stripped_story_name[FILENAME_MAX+1]; char semi_stripped_story_name[FILENAME_MAX+1]; */ +f_setup_t f_setup; +u_setup_t u_setup; + +/* static void sigwinch_handler(int); */ +static void sigint_handler(int); +/* static void redraw(void); */ + static int zgetopt (int, char **, const char *); static int zoptind = 1; static int zoptopt = 0; -- 2.34.1