diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-04-16 17:21:25 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-04-16 17:21:25 +0000 |
commit | f49e8443fa10e1faab19c838e2cea6d2c101e245 (patch) | |
tree | 3f94179bfc335e3a1f36e4345dfcc538cd3ba694 /sys/arch/zaurus | |
parent | 3c6e7f787e9f1360925c650226ca77176d3a6f9d (diff) |
don't print the additional "exit" message on exit.
Diffstat (limited to 'sys/arch/zaurus')
-rw-r--r-- | sys/arch/zaurus/stand/zboot/exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/zaurus/stand/zboot/exit.c b/sys/arch/zaurus/stand/zboot/exit.c index e6a93defbad..59db22983aa 100644 --- a/sys/arch/zaurus/stand/zboot/exit.c +++ b/sys/arch/zaurus/stand/zboot/exit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exit.c,v 1.1 2005/01/10 00:25:03 deraadt Exp $ */ +/* $OpenBSD: exit.c,v 1.2 2005/04/16 17:21:24 uwe Exp $ */ /* $NetBSD: exit.c,v 1.11 1996/12/01 20:22:19 pk Exp $ */ /*- @@ -61,5 +61,5 @@ panic(const char *fmt, ...) void exit(void) { - panic("exit"); + uexit(0); } |