mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
c8504ede5f
interstellar liner. PR: 3989 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
37 lines
879 B
Plaintext
37 lines
879 B
Plaintext
*** galaxis.c Wed Sep 20 17:16:33 1995
|
|
--- /home/andy/tmp/wrk/galaxis.c Mon Jun 30 08:45:01 1997
|
|
***************
|
|
*** 8,14 ****
|
|
|
|
#include <stdio.h>
|
|
#include <termios.h>
|
|
! #include <curses.h>
|
|
#include <signal.h>
|
|
#include <ctype.h>
|
|
#include <assert.h>
|
|
--- 8,14 ----
|
|
|
|
#include <stdio.h>
|
|
#include <termios.h>
|
|
! #include <ncurses.h>
|
|
#include <signal.h>
|
|
#include <ctype.h>
|
|
#include <assert.h>
|
|
***************
|
|
*** 131,137 ****
|
|
|
|
(void) signal(SIGINT,outro);
|
|
(void) signal(SIGINT,outro);
|
|
! (void) signal(SIGIOT,outro); /* for assert(3) */
|
|
if(signal(SIGQUIT,SIG_IGN) != SIG_IGN)
|
|
(void)signal(SIGQUIT,outro);
|
|
|
|
--- 131,137 ----
|
|
|
|
(void) signal(SIGINT,outro);
|
|
(void) signal(SIGINT,outro);
|
|
! (void) signal(SIGABRT,outro); /* for assert(3) */
|
|
if(signal(SIGQUIT,SIG_IGN) != SIG_IGN)
|
|
(void)signal(SIGQUIT,outro);
|
|
|