diff options
-rw-r--r-- | usr/src/boot/sys/boot/i386/isoboot/isoboot.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr/src/boot/sys/boot/i386/isoboot/isoboot.c b/usr/src/boot/sys/boot/i386/isoboot/isoboot.c index e5550f3b2f..8e25fd55de 100644 --- a/usr/src/boot/sys/boot/i386/isoboot/isoboot.c +++ b/usr/src/boot/sys/boot/i386/isoboot/isoboot.c @@ -331,12 +331,10 @@ main(void) /* Needed so btxld can link us properly; do not remove. */ void -exit(int x __unused) +exit(int x) { - while (1) - ; - __unreachable(); + __exit(x); } static void |