change <sys/signal.h> to <signal.h>
This commit is contained in:
parent
7cd5ae5858
commit
e6371e01f3
|
@ -42,7 +42,7 @@ char copyright[] =
|
|||
|
||||
#ifndef lint
|
||||
/*static char sccsid[] = "from: @(#)arithmetic.c 5.5 (Berkeley) 2/27/91";*/
|
||||
static char rcsid[] = "$Id: arithmetic.c,v 1.3 1993/08/01 18:57:22 mycroft Exp $";
|
||||
static char rcsid[] = "$Id: arithmetic.c,v 1.4 1995/02/28 18:30:59 jtc Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
|
@ -74,7 +74,7 @@ static char rcsid[] = "$Id: arithmetic.c,v 1.3 1993/08/01 18:57:22 mycroft Exp $
|
|||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/signal.h>
|
||||
#include <signal.h>
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)externs.h 5.4 (Berkeley) 6/1/90
|
||||
* $Id: externs.h,v 1.2 1993/08/01 18:56:15 mycroft Exp $
|
||||
* $Id: externs.h,v 1.3 1995/02/28 18:31:09 jtc Exp $
|
||||
*/
|
||||
|
||||
#include <sys/signal.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#define BITS (8 * sizeof (int))
|
||||
|
|
|
@ -39,7 +39,7 @@ char copyright[] =
|
|||
|
||||
#ifndef lint
|
||||
/*static char sccsid[] = "from: @(#)canfield.c 5.11 (Berkeley) 2/28/91";*/
|
||||
static char rcsid[] = "$Id: canfield.c,v 1.3 1993/08/10 03:44:45 mycroft Exp $";
|
||||
static char rcsid[] = "$Id: canfield.c,v 1.4 1995/02/28 18:31:17 jtc Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
|
@ -54,7 +54,7 @@ static char rcsid[] = "$Id: canfield.c,v 1.3 1993/08/10 03:44:45 mycroft Exp $";
|
|||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/signal.h>
|
||||
#include <signal.h>
|
||||
#include <curses.h>
|
||||
#include <termios.h>
|
||||
#include <ctype.h>
|
||||
|
|
|
@ -39,10 +39,10 @@ char copyright[] =
|
|||
|
||||
#ifndef lint
|
||||
/*static char sccsid[] = "from: @(#)crib.c 5.6 (Berkeley) 2/28/91";*/
|
||||
static char rcsid[] = "$Id: crib.c,v 1.3 1993/08/01 18:55:15 mycroft Exp $";
|
||||
static char rcsid[] = "$Id: crib.c,v 1.4 1995/02/28 18:31:26 jtc Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
# include <sys/signal.h>
|
||||
# include <signal.h>
|
||||
# include <curses.h>
|
||||
# include <unistd.h>
|
||||
# include "deck.h"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char rcsid[] = "$Id: hack.pager.c,v 1.2 1993/08/02 17:19:13 mycroft Exp $";
|
||||
static char rcsid[] = "$Id: hack.pager.c,v 1.3 1995/02/28 18:31:36 jtc Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/* This file contains the command routine dowhatis() and a pager. */
|
||||
|
@ -11,13 +11,14 @@ static char rcsid[] = "$Id: hack.pager.c,v 1.2 1993/08/02 17:19:13 mycroft Exp $
|
|||
contact the outside world. */
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/signal.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include "hack.h"
|
||||
extern int CO, LI; /* usually COLNO and ROWNO+2 */
|
||||
extern char *CD;
|
||||
extern char quitchars[];
|
||||
extern char *getenv(), *getlogin();
|
||||
void done1();
|
||||
|
||||
dowhatis()
|
||||
|
|
Loading…
Reference in New Issue