abort() should be marked __dead2 since it won't return.

This commit is contained in:
Warner Losh 2018-01-26 17:40:13 +00:00
parent 18dd077da6
commit 30883627ed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328441

View File

@ -348,7 +348,7 @@ extern ev_unsethook_t env_nounset; /* refuse unset operation */
/* stdlib.h routines */
extern int abs(int a);
extern void abort(void);
extern void abort(void) __dead2;
/* BCD conversions (undocumented) */
extern u_char const bcd2bin_data[];