summaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-06-22 12:57:44 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-06-22 12:57:44 +1000
commitefa62f98a140e238256c2f75f4cd8a282fe802a3 (patch)
tree6f6db291ac9fa18abc444452470c8560ea9fedc0 /log.h
parent723e945b55b29ecd7ce908cf81a67fd998764aff (diff)
- djm@cvs.openbsd.org 2004/06/21 22:02:58
[log.h] mark fatal and cleanup exit as __dead; ok markus@
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 e0263194f..2b3c3090f 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>
@@ -53,7 +53,7 @@ void log_init(char *, LogLevel, SyslogFacility, int);
53SyslogFacility log_facility_number(char *); 53SyslogFacility log_facility_number(char *);
54LogLevel log_level_number(char *); 54LogLevel log_level_number(char *);
55 55
56void fatal(const char *, ...) __attribute__((format(printf, 1, 2))); 56void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2)));
57void error(const char *, ...) __attribute__((format(printf, 1, 2))); 57void error(const char *, ...) __attribute__((format(printf, 1, 2)));
58void logit(const char *, ...) __attribute__((format(printf, 1, 2))); 58void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
59void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); 59void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
@@ -62,5 +62,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
62void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); 62void debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
63 63
64void do_log(LogLevel, const char *, va_list); 64void do_log(LogLevel, const char *, va_list);
65void cleanup_exit(int); 65void cleanup_exit(int) __dead;
66#endif 66#endif