summaryrefslogtreecommitdiffstats
path: root/worms
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2004-09-12 04:51:32 +0000
committerchristos <christos@NetBSD.org>2004-09-12 04:51:32 +0000
commitef4d58572f66f86a3db4aa555d139fee63cca10c (patch)
tree64e607cf624ae86907725cb89e44e6a8efde0d5b /worms
parent26b0dec5a419a22d83f6b52853c42e5dd6d5ec60 (diff)
downloadbsdgames-darwin-ef4d58572f66f86a3db4aa555d139fee63cca10c.tar.gz
bsdgames-darwin-ef4d58572f66f86a3db4aa555d139fee63cca10c.tar.zst
bsdgames-darwin-ef4d58572f66f86a3db4aa555d139fee63cca10c.zip
Don't try to catch SIGSTOP...
Diffstat (limited to 'worms')
-rw-r--r--worms/worms.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/worms/worms.c b/worms/worms.c
index 42423319..88fc47a5 100644
--- a/worms/worms.c
+++ b/worms/worms.c
@@ -1,4 +1,4 @@
-/* $NetBSD: worms.c,v 1.15 2004/03/29 20:30:03 hubertf Exp $ */
+/* $NetBSD: worms.c,v 1.16 2004/09/12 04:51:32 christos Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)worms.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: worms.c,v 1.15 2004/03/29 20:30:03 hubertf Exp $");
+__RCSID("$NetBSD: worms.c,v 1.16 2004/09/12 04:51:32 christos Exp $");
#endif
#endif /* not lint */
@@ -270,7 +270,6 @@ main(argc, argv)
(void)signal(SIGHUP, onsig);
(void)signal(SIGINT, onsig);
(void)signal(SIGQUIT, onsig);
- (void)signal(SIGSTOP, onsig);
(void)signal(SIGTSTP, onsig);
(void)signal(SIGTERM, onsig);