summaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'log.h')
-rw-r--r--log.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/log.h b/log.h
index 9dac57901..257a3a0c1 100644
--- a/log.h
+++ b/log.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: log.h,v 1.15 2006/08/18 09:13:25 deraadt Exp $ */ 1/* $OpenBSD: log.h,v 1.17 2008/06/13 00:12:02 dtucker Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -50,11 +50,15 @@ typedef enum {
50void log_init(char *, LogLevel, SyslogFacility, int); 50void log_init(char *, LogLevel, SyslogFacility, int);
51 51
52SyslogFacility log_facility_number(char *); 52SyslogFacility log_facility_number(char *);
53LogLevel log_level_number(char *); 53const char * log_facility_name(SyslogFacility);
54LogLevel log_level_number(char *);
55const char * log_level_name(LogLevel);
54 56
55void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); 57void fatal(const char *, ...) __attribute__((noreturn))
58 __attribute__((format(printf, 1, 2)));
56void error(const char *, ...) __attribute__((format(printf, 1, 2))); 59void error(const char *, ...) __attribute__((format(printf, 1, 2)));
57void sigdie(const char *, ...) __attribute__((format(printf, 1, 2))); 60void sigdie(const char *, ...) __attribute__((noreturn))
61 __attribute__((format(printf, 1, 2)));
58void logit(const char *, ...) __attribute__((format(printf, 1, 2))); 62void logit(const char *, ...) __attribute__((format(printf, 1, 2)));
59void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); 63void verbose(const char *, ...) __attribute__((format(printf, 1, 2)));
60void debug(const char *, ...) __attribute__((format(printf, 1, 2))); 64void debug(const char *, ...) __attribute__((format(printf, 1, 2)));
@@ -62,5 +66,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2)));
62void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); 66void debug3(const char *, ...) __attribute__((format(printf, 1, 2)));
63 67
64void do_log(LogLevel, const char *, va_list); 68void do_log(LogLevel, const char *, va_list);
65void cleanup_exit(int) __dead; 69void cleanup_exit(int) __attribute__((noreturn));
66#endif 70#endif