summaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2005-01-04 13:07:27 +0000
committerColin Watson <cjwatson@debian.org>2005-01-04 13:07:27 +0000
commitfd0f611b70a83d80fe8793af785542ee5541b7cd (patch)
treebededd22bb7eeec52e20083237ab7e4113445a16 /log.h
parentc44fe9a5b9d3db96a7249b04d915f17e4a3a3b04 (diff)
parentebd2ce335af5861020c79fddb1ae35c03bf036cf (diff)
Merge 3.9p1 to the trunk.
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