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> |
@@ -54,7 +54,7 @@ void log_init(char *, LogLevel, SyslogFacility, int); | |||
54 | SyslogFacility log_facility_number(char *); | 54 | SyslogFacility log_facility_number(char *); |
55 | LogLevel log_level_number(char *); | 55 | LogLevel log_level_number(char *); |
56 | 56 | ||
57 | void fatal(const char *, ...) __attribute__((format(printf, 1, 2))); | 57 | void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); |
58 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); | 58 | void error(const char *, ...) __attribute__((format(printf, 1, 2))); |
59 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); | 59 | void logit(const char *, ...) __attribute__((format(printf, 1, 2))); |
60 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); | 60 | void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); |
@@ -63,5 +63,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); | |||
63 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); | 63 | void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); |
64 | 64 | ||
65 | void do_log(LogLevel, const char *, va_list); | 65 | void do_log(LogLevel, const char *, va_list); |
66 | void cleanup_exit(int); | 66 | void cleanup_exit(int) __dead; |
67 | #endif | 67 | #endif |