diff options
Diffstat (limited to 'log.h')
-rw-r--r-- | log.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: log.h,v 1.10 2003/09/23 20:17:11 markus Exp $ */ | 1 | /* $OpenBSD: log.h,v 1.11 2004/06/21 22:02:58 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -53,7 +53,7 @@ void log_init(char *, LogLevel, SyslogFacility, int); | |||
53 | SyslogFacility log_facility_number(char *); | 53 | SyslogFacility log_facility_number(char *); |
54 | LogLevel log_level_number(char *); | 54 | LogLevel log_level_number(char *); |
55 | 55 | ||
56 | void fatal(const char *, ...) __attribute__((format(printf, 1, 2))); | 56 | void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); |
57 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); | 57 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); |
58 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); | 58 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); |
59 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); | 59 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); |
@@ -62,5 +62,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); | |||
62 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); | 62 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); |
63 | 63 | ||
64 | void do_log(LogLevel, const char *, va_list); | 64 | void do_log(LogLevel, const char *, va_list); |
65 | void cleanup_exit(int); | 65 | void cleanup_exit(int) __dead; |
66 | #endif | 66 | #endif |