15 static inline void panic(const char *format
, ...) __check_format_printf(1, 2);
16 static inline void syslog_panic(const char *format
,
17 ...) __check_format_printf(1, 2);
18 static inline void syslog_maybe(bool cond
, int priority
,
19 const char *format
, ...) __check_format_printf(3, 4);
21 static inline void __noreturn
__die_hard(void)
26 static inline void __noreturn
__die_harder(void)
31 static inline void __noreturn
die(void)
36 static inline void __noreturn
_die(void)
41 static inline void __noreturn
panic(const char *format
, ...)
46 vfprintf(stderr
, format
, vl
);
52 static inline void __noreturn
syslog_panic(const char *format
, ...)
57 vsyslog(LOG_ERR
, format
, vl
);
63 static inline void syslog_maybe(bool cond
, int priority
,
64 const char *format
, ...)
70 vsyslog(priority
, format
, vl
);