diff options
author | Darren Tucker <dtucker@zip.com.au> | 2008-06-13 02:22:54 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2008-06-13 02:22:54 +0200 |
commit | f8b7eb7c3c77625845f4e2a844cc57c0496d414e (patch) | |
tree | 83bc292ac1cba86c4f7e13d54e321141b530c01f /log.h | |
parent | - ian@cvs.openbsd.org 2008/06/12 23:24:58 (diff) | |
download | openssh-f8b7eb7c3c77625845f4e2a844cc57c0496d414e.tar.xz openssh-f8b7eb7c3c77625845f4e2a844cc57c0496d414e.zip |
- dtucker@cvs.openbsd.org 2008/06/13 00:12:02
[sftp.h log.h]
replace __dead with __attribute__((noreturn)), makes things
a little easier to port. Also, add it to sigdie(). ok djm@
Diffstat (limited to 'log.h')
-rw-r--r-- | log.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.16 2008/06/10 04:50:25 dtucker Exp $ */ +/* $OpenBSD: log.h,v 1.17 2008/06/13 00:12:02 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -53,9 +53,11 @@ const char * log_facility_name(SyslogFacility); LogLevel log_level_number(char *); const char * log_level_name(LogLevel); -void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); +void fatal(const char *, ...) __attribute__((noreturn)) + __attribute__((format(printf, 1, 2))); void error(const char *, ...) __attribute__((format(printf, 1, 2))); -void sigdie(const char *, ...) __attribute__((format(printf, 1, 2))); +void sigdie(const char *, ...) __attribute__((noreturn)) + __attribute__((format(printf, 1, 2))); void logit(const char *, ...) __attribute__((format(printf, 1, 2))); void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); void debug(const char *, ...) __attribute__((format(printf, 1, 2))); @@ -63,5 +65,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); void do_log(LogLevel, const char *, va_list); -void cleanup_exit(int) __dead; +void cleanup_exit(int) __attribute__((noreturn)); #endif |