From 38ddf1d848b18b696d1eea81e3334b57678276be Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Sat, 20 Apr 2002 01:13:45 +0000 Subject: use _exit() in signal handler; millert ok --- gnu/usr.bin/gas/as.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu') 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 @@ -418,7 +418,7 @@ int sig; as_bad("Interrupted by signal %d", sig); if (here_before++) - exit(1); + _exit(1); return((SIGTY) 0); } -- cgit v1.2.3