diff options
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 290f51eb796..2cc7dad0cb5 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -15,7 +15,7 @@ The main loop for the interactive session (client side). */ #include "includes.h" -RCSID("$Id: clientloop.c,v 1.5 1999/09/30 05:53:04 deraadt Exp $"); +RCSID("$Id: clientloop.c,v 1.6 1999/09/30 08:34:24 deraadt Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -129,7 +129,7 @@ void enter_non_blocking() /* Signal handler for the window change signal (SIGWINCH). This just sets a flag indicating that the window has changed. */ -RETSIGTYPE window_change_handler(int sig) +void window_change_handler(int sig) { received_window_change_signal = 1; signal(SIGWINCH, window_change_handler); @@ -138,7 +138,7 @@ RETSIGTYPE window_change_handler(int sig) /* Signal handler for signals that cause the program to terminate. These signals must be trapped to restore terminal modes. */ -RETSIGTYPE signal_handler(int sig) +void signal_handler(int sig) { if (in_raw_mode) leave_raw_mode(); |