diff options
author | 2001-08-20 19:59:45 +0000 | |
---|---|---|
committer | 2001-08-20 19:59:45 +0000 | |
commit | 30288e188e8928e2eecf149c95e5f5983c5ea63d (patch) | |
tree | 8f56ae56d3a452fcd767c5a2013bc90eb2362cff /sys | |
parent | $OpenBSD$ (diff) | |
download | wireguard-openbsd-30288e188e8928e2eecf149c95e5f5983c5ea63d.tar.xz wireguard-openbsd-30288e188e8928e2eecf149c95e5f5983c5ea63d.zip |
silence gcc for __dead function.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sun3/sun3/sun3_startup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sun3/sun3/sun3_startup.c b/sys/arch/sun3/sun3/sun3_startup.c index e1f1b7993bb..5cd00a71bc7 100644 --- a/sys/arch/sun3/sun3/sun3_startup.c +++ b/sys/arch/sun3/sun3/sun3_startup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sun3_startup.c,v 1.17 2001/06/25 00:43:18 mickey Exp $ */ +/* $OpenBSD: sun3_startup.c,v 1.18 2001/08/20 19:59:45 miod Exp $ */ /* $NetBSD: sun3_startup.c,v 1.55 1996/11/20 18:57:38 gwr Exp $ */ /*- @@ -215,6 +215,7 @@ sun3_mon_reboot(bootstring) sun3_mode_monitor(); mon_reboot(bootstring); mon_exit_to_mon(); + for (;;); /* appease gcc */ /*NOTREACHED*/ } |