Mark xo_err(3), xo_errx(3), and xo_errc(3) as __dead2.

Differential Revision:	https://reviews.freebsd.org/D2059
Reviewed by:	marcel@
MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2015-03-13 20:14:55 +00:00
parent 295e61d6a3
commit a52c3ec43c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279966

View File

@ -272,13 +272,13 @@ void
xo_warnx (const char *fmt, ...);
void
xo_err (int eval, const char *fmt, ...);
xo_err (int eval, const char *fmt, ...) __dead2;
void
xo_errx (int eval, const char *fmt, ...);
xo_errx (int eval, const char *fmt, ...) __dead2;
void
xo_errc (int eval, int code, const char *fmt, ...);
xo_errc (int eval, int code, const char *fmt, ...) __dead2;
void
xo_message_hcv (xo_handle_t *xop, int code, const char *fmt, va_list vap);