=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/clientloop.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/ssh/clientloop.c 1999/09/30 05:53:04 1.5 +++ src/usr.bin/ssh/clientloop.c 1999/09/30 08:34:24 1.6 @@ -15,7 +15,7 @@ */ #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 @@ /* 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 @@ /* 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();