From 39de38225b3e84c7c1f3ce058bf922f966fbdef9 Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Fri, 2 Oct 1998 16:22:54 +0000 Subject: [PATCH] Mark exit() as __attribute__((__noreturn__)) --- sys/boot/i386/btx/lib/btxv86.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/boot/i386/btx/lib/btxv86.h b/sys/boot/i386/btx/lib/btxv86.h index d01be4f8959..db54ae32b19 100644 --- a/sys/boot/i386/btx/lib/btxv86.h +++ b/sys/boot/i386/btx/lib/btxv86.h @@ -14,7 +14,7 @@ */ /* - * $Id: btxv86.h,v 1.1 1998/09/14 10:37:00 rnordier Exp $ + * $Id: btxv86.h,v 1.2 1998/09/17 23:52:05 msmith Exp $ */ #ifndef _BTXV86_H_ @@ -57,7 +57,7 @@ extern u_int32_t __args; #define VTOPSEG(va) (u_int16_t)(VTOP(va) >> 4) #define VTOPOFF(va) (u_int16_t)(VTOP(va) & 0xf) -void __exit(int); +void __exit(int) __attribute__((__noreturn__)); void __exec(caddr_t, ...); #endif /* !_BTXV86_H_ */ -- 2.45.2