From 25cd851c6e6f097cdefeb68e8838d0cc517a7c08 Mon Sep 17 00:00:00 2001 From: ceriel Date: Tue, 15 Aug 1995 09:10:39 +0000 Subject: [PATCH] Don't use SIGEMT; it is not portable --- util/grind/commands.g | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/grind/commands.g b/util/grind/commands.g index d2afb7b0..2fbabebf 100644 --- a/util/grind/commands.g +++ b/util/grind/commands.g @@ -646,7 +646,7 @@ catch_del() { signal(SIGINT, catch_del); if (! disable_intr) { - signal_child(SIGEMT); + signal_child(7); child_interrupted = 1; } interrupted = 1;