diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 19:37:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 19:37:54 +0000 |
commit | d2d496a9829c6ae31210332b754c970e30376168 (patch) | |
tree | fc5363d5b5a44ba042d8593d4daecaa33c48e2cb /usr.bin/make | |
parent | 7c55e4e549629fce84a903065ccc2a80c9438df1 (diff) |
do not exit() from signal handler
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index 695fd29d363..7f32886d369 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: compat.c,v 1.40 2001/09/15 18:43:41 mickey Exp $ */ +/* $OpenBSD: compat.c,v 1.41 2001/11/17 19:37:53 deraadt Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* @@ -115,7 +115,7 @@ CompatInterrupt(signo) } } - exit(signo); + _exit(signo); } /*- |