delete bogus declaration of abort() and include stdlib.h, so that this
compiles w/o warning.
#ifndef lint
/*static char sccsid[] = "from: @(#)termout.c 4.3 (Berkeley) 4/26/91";*/
-static char rcsid[] = "$Id: termout.c,v 1.2 1995/11/13 04:59:23 deraadt Exp $";
+static char rcsid[] = "$Id: termout.c,v 1.3 1995/12/14 13:57:47 deraadt Exp $";
#endif /* not lint */
#if defined(unix)
#include <termios.h>
#endif
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <curses.h>
#if defined(ultrix)
#if defined(unix)
char KSEbuffer[2050];
char *lotsofspace = KSEbuffer;
- extern void abort();
extern char *tgetstr();
#endif /* defined(unix) */
ClearArray(Terminal);
terminalCursorAddress = SetBufferAddress(0,0);
#if defined(unix)
- signal(SIGHUP, abort);
+ signal(SIGHUP, (void (*))abort);
#endif
TryToSend = FastScreen;