diff options
author | Warner Losh <imp@FreeBSD.org> | 2018-01-26 17:40:13 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2018-01-26 17:40:13 +0000 |
commit | 30883627ed12591e7d9d9d99f2e0e7d3bddc84fb (patch) | |
tree | f04cccd8fce3d8a03e91e7df82b5c6c02896e268 /stand/libsa/stand.h | |
parent | 18dd077da64274bdc038698f96ce25e022af0d55 (diff) | |
download | src-30883627ed12591e7d9d9d99f2e0e7d3bddc84fb.tar.gz src-30883627ed12591e7d9d9d99f2e0e7d3bddc84fb.zip |
abort() should be marked __dead2 since it won't return.
Notes
Notes:
svn path=/head/; revision=328441
Diffstat (limited to 'stand/libsa/stand.h')
-rw-r--r-- | stand/libsa/stand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/libsa/stand.h b/stand/libsa/stand.h index e66791347ca4..a46f90b5bd77 100644 --- a/stand/libsa/stand.h +++ b/stand/libsa/stand.h @@ -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[]; |