Skip to content

Commit ef77d6a

Browse files
oops, use <signal.h> not <sys/signal.h> (tholo@sigmasoft.com)
1 parent 0bc76ac commit ef77d6a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

games/adventure/init.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $NetBSD: init.c,v 1.3 1996/05/21 10:48:09 mrg Exp $ */
1+
/* $NetBSD: init.c,v 1.4 1996/05/21 21:53:05 mrg Exp $ */
22

33
/*-
44
* Copyright (c) 1993
@@ -42,14 +42,14 @@
4242
#if 0
4343
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 6/2/93";
4444
#else
45-
static char rcsid[] = "$NetBSD: init.c,v 1.3 1996/05/21 10:48:09 mrg Exp $";
45+
static char rcsid[] = "$NetBSD: init.c,v 1.4 1996/05/21 21:53:05 mrg Exp $";
4646
#endif
4747
#endif /* not lint */
4848

4949
/* Re-coding of advent in C: data initialization */
5050

5151
#include <sys/types.h>
52-
#include <sys/signal.h>
52+
#include <signal.h>
5353
#include <stdio.h>
5454
#include "hdr.h"
5555

games/adventure/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $NetBSD: main.c,v 1.4 1996/05/21 10:48:07 mrg Exp $ */
1+
/* $NetBSD: main.c,v 1.5 1996/05/21 21:53:09 mrg Exp $ */
22

33
/*-
44
* Copyright (c) 1991, 1993
@@ -48,14 +48,14 @@ static char copyright[] =
4848
#if 0
4949
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/2/93";
5050
#else
51-
static char rcsid[] = "$NetBSD: main.c,v 1.4 1996/05/21 10:48:07 mrg Exp $";
51+
static char rcsid[] = "$NetBSD: main.c,v 1.5 1996/05/21 21:53:09 mrg Exp $";
5252
#endif
5353
#endif /* not lint */
5454

5555
/* Re-coding of advent in C: main program */
5656

5757
#include <sys/file.h>
58-
#include <sys/signal.h>
58+
#include <signal.h>
5959
#include <stdio.h>
6060
#include "hdr.h"
6161

0 commit comments

Comments
 (0)