summaryrefslogtreecommitdiffstats
path: root/adventure/init.c
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>1996-05-21 21:53:05 +0000
committermrg <mrg@NetBSD.org>1996-05-21 21:53:05 +0000
commit91b52f3e5785b8479e883066b96f52be6d0741f2 (patch)
tree8d626567ca50cc9771fd9f1833dfb12ecf9f2722 /adventure/init.c
parent4b62a0368fd5c80f3c11847e1611718031a54467 (diff)
downloadbsdgames-darwin-91b52f3e5785b8479e883066b96f52be6d0741f2.tar.gz
bsdgames-darwin-91b52f3e5785b8479e883066b96f52be6d0741f2.tar.zst
bsdgames-darwin-91b52f3e5785b8479e883066b96f52be6d0741f2.zip
oops, use <signal.h> not <sys/signal.h> (tholo@sigmasoft.com)
Diffstat (limited to 'adventure/init.c')
-rw-r--r--adventure/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/adventure/init.c b/adventure/init.c
index e16daa94..6f176132 100644
--- a/adventure/init.c
+++ b/adventure/init.c
@@ -1,4 +1,4 @@
-/* $NetBSD: init.c,v 1.3 1996/05/21 10:48:09 mrg Exp $ */
+/* $NetBSD: init.c,v 1.4 1996/05/21 21:53:05 mrg Exp $ */
/*-
* Copyright (c) 1993
@@ -42,14 +42,14 @@
#if 0
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 6/2/93";
#else
-static char rcsid[] = "$NetBSD: init.c,v 1.3 1996/05/21 10:48:09 mrg Exp $";
+static char rcsid[] = "$NetBSD: init.c,v 1.4 1996/05/21 21:53:05 mrg Exp $";
#endif
#endif /* not lint */
/* Re-coding of advent in C: data initialization */
#include <sys/types.h>
-#include <sys/signal.h>
+#include <signal.h>
#include <stdio.h>
#include "hdr.h"