summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libunix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/libunix.cc')
-rw-r--r--crawl-ref/source/libunix.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/libunix.cc b/crawl-ref/source/libunix.cc
index 20dd071ca8..7006a6d2fb 100644
--- a/crawl-ref/source/libunix.cc
+++ b/crawl-ref/source/libunix.cc
@@ -72,6 +72,9 @@ static struct termios game_term;
#include CURSES_INCLUDE_FILE
#endif
+void unixcurses_startup();
+void unixcurses_shutdown();
+
// Globals holding current text/backg. colors
static short FG_COL = WHITE;
static short BG_COL = BLACK;
@@ -323,6 +326,9 @@ static void handle_sigwinch(int)
}
#ifdef SIGHUP_SAVE
+
+void sighup_save_and_exit();
+
/* [ds] This SIGHUP handling is primitive and far from safe, but it
* should be better than nothing. Feel free to get rigorous on this.
*/