diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-20 01:13:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-20 01:13:45 +0000 |
commit | 38ddf1d848b18b696d1eea81e3334b57678276be (patch) | |
tree | 6a0f824ae746b0c4f207433a9c7b6fba607df1a1 | |
parent | 6138b4b478350259983f849415ae192ef558b309 (diff) |
use _exit() in signal handler; millert ok
-rw-r--r-- | gnu/usr.bin/gas/as.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/gas/as.c b/gnu/usr.bin/gas/as.c index 7424d0d6a25..1b1250d82c3 100644 --- a/gnu/usr.bin/gas/as.c +++ b/gnu/usr.bin/gas/as.c @@ -1,4 +1,4 @@ -/* $OpenBSD: as.c,v 1.3 1999/12/07 20:10:32 espie Exp $ */ +/* $OpenBSD: as.c,v 1.4 2002/04/20 01:13:44 deraadt Exp $ */ /* as.c - GAS main program. Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc. @@ -34,7 +34,7 @@ * */ #ifndef lint -static char rcsid[] = "$OpenBSD: as.c,v 1.3 1999/12/07 20:10:32 espie Exp $"; +static char rcsid[] = "$OpenBSD: as.c,v 1.4 2002/04/20 01:13:44 deraadt Exp $"; #endif #include <stdio.h> @@ -418,7 +418,7 @@ int sig; as_bad("Interrupted by signal %d", sig); if (here_before++) - exit(1); + _exit(1); return((SIGTY) 0); } |