summaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'log.h')
-rw-r--r--log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/log.h b/log.h
index 14700be9c..d7170fc22 100644
--- a/log.h
+++ b/log.h
@@ -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);
54SyslogFacility log_facility_number(char *); 54SyslogFacility log_facility_number(char *);
55LogLevel log_level_number(char *); 55LogLevel log_level_number(char *);
56 56
57void fatal(const char *, ...) __attribute__((format(printf, 1, 2))); 57void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2)));
58void error(const char *, ...) __attribute__((format(printf, 1, 2))); 58void error(const char *, ...) __attribute__((format(printf, 1, 2)));
59void logit(const char *, ...) __attribute__((format(printf, 1, 2))); 59void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
60void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); 60void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
@@ -63,5 +63,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
63void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); 63void debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
64 64
65void do_log(LogLevel, const char *, va_list); 65void do_log(LogLevel, const char *, va_list);
66void cleanup_exit(int); 66void cleanup_exit(int) __dead;
67#endif 67#endif