diff --git a/sys/arch/i386/stand/biosboot/main.c b/sys/arch/i386/stand/biosboot/main.c index bbfd4059f16d..fa4df61d4956 100644 --- a/sys/arch/i386/stand/biosboot/main.c +++ b/sys/arch/i386/stand/biosboot/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.14 1998/08/13 17:41:10 rvb Exp $ */ +/* $NetBSD: main.c,v 1.15 1999/02/12 05:14:22 cjs Exp $ */ /* * Copyright (c) 1996, 1997 @@ -306,7 +306,7 @@ command_quit(arg) reboot(); /* Note: we shouldn't get to this point! */ panic("Could not reboot!"); - exit(0); + exit(); } void diff --git a/sys/arch/i386/stand/dosboot/main.c b/sys/arch/i386/stand/dosboot/main.c index 2e160dc9e0d2..e118aff052a3 100644 --- a/sys/arch/i386/stand/dosboot/main.c +++ b/sys/arch/i386/stand/dosboot/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.10 1997/11/03 18:17:19 drochner Exp $ */ +/* $NetBSD: main.c,v 1.11 1999/02/12 05:14:23 cjs Exp $ */ /* * Copyright (c) 1996, 1997 @@ -334,7 +334,7 @@ command_quit(arg) char *arg; { printf("Exiting... goodbye...\n"); - exit(0); + exit(); } void diff --git a/sys/arch/i386/stand/lib/panic.c b/sys/arch/i386/stand/lib/panic.c index 54696c9cdb45..802f808060fc 100644 --- a/sys/arch/i386/stand/lib/panic.c +++ b/sys/arch/i386/stand/lib/panic.c @@ -1,4 +1,4 @@ -/* $NetBSD: panic.c,v 1.2 1997/03/22 01:48:36 thorpej Exp $ */ +/* $NetBSD: panic.c,v 1.3 1999/02/12 05:14:23 cjs Exp $ */ /* * Copyright (c) 1996 @@ -50,5 +50,5 @@ panic(const char *fmt,...) printf("\n"); va_end(ap); - exit(1); + exit(); }