diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c index 022802c80..6a6ba34f3 100644 --- a/src/main.c +++ b/src/main.c @@ -108,7 +108,7 @@ update_xterm_title(void) } } -void +static void exit_and_cleanup(void) { screen_exit(); @@ -128,14 +128,15 @@ exit_and_cleanup(void) g_timer_destroy(timer); } -void +static void catch_sigint( int sig ) { printf("\n%s\n", _("Exiting...")); exit(EXIT_SUCCESS); } -void + +static void catch_sigcont( int sig ) { D("catch_sigcont()\n"); |