diff options
Diffstat (limited to 'log.h')
-rw-r--r-- | log.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: log.h,v 1.16 2008/06/10 04:50:25 dtucker Exp $ */ | 1 | /* $OpenBSD: log.h,v 1.17 2008/06/13 00:12:02 dtucker Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -53,9 +53,11 @@ const char * log_facility_name(SyslogFacility); | |||
53 | LogLevel log_level_number(char *); | 53 | LogLevel log_level_number(char *); |
54 | const char * log_level_name(LogLevel); | 54 | const char * log_level_name(LogLevel); |
55 | 55 | ||
56 | void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); | 56 | void fatal(const char *, ...) __attribute__((noreturn)) |
57 | __attribute__((format(printf, 1, 2))); | ||
57 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); | 58 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); |
58 | void sigdie(const char *, ...) __attribute__((format(printf, 1, 2))); | 59 | void sigdie(const char *, ...) __attribute__((noreturn)) |
60 | __attribute__((format(printf, 1, 2))); | ||
59 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); | 61 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); |
60 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); | 62 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); |
61 | void debug(const char *, ...) __attribute__((format(printf, 1, 2))); | 63 | void debug(const char *, ...) __attribute__((format(printf, 1, 2))); |
@@ -63,5 +65,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); | |||
63 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); | 65 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); |
64 | 66 | ||
65 | void do_log(LogLevel, const char *, va_list); | 67 | void do_log(LogLevel, const char *, va_list); |
66 | void cleanup_exit(int) __dead; | 68 | void cleanup_exit(int) __attribute__((noreturn)); |
67 | #endif | 69 | #endif |