diff options
author | 2004-06-21 22:02:58 +0000 | |
---|---|---|
committer | 2004-06-21 22:02:58 +0000 | |
commit | 76cd0376f2a12c7c8f6125eadb79897e5a889b05 (patch) | |
tree | ebcd864de70c0e74800924fee1561f6407804bf6 | |
parent | make test successful even when /etc/services is changed (diff) | |
download | wireguard-openbsd-76cd0376f2a12c7c8f6125eadb79897e5a889b05.tar.xz wireguard-openbsd-76cd0376f2a12c7c8f6125eadb79897e5a889b05.zip |
mark fatal and cleanup exit as __dead; ok markus@
-rw-r--r-- | usr.bin/ssh/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/log.h b/usr.bin/ssh/log.h index 9f0546ac6fe..b63e30c8880 100644 --- a/usr.bin/ssh/log.h +++ b/usr.bin/ssh/log.h @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.10 2003/09/23 20:17:11 markus Exp $ */ +/* $OpenBSD: log.h,v 1.11 2004/06/21 22:02:58 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -48,7 +48,7 @@ void log_init(char *, LogLevel, SyslogFacility, int); SyslogFacility log_facility_number(char *); LogLevel log_level_number(char *); -void fatal(const char *, ...) __attribute__((format(printf, 1, 2))); +void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); void error(const char *, ...) __attribute__((format(printf, 1, 2))); void logit(const char *, ...) __attribute__((format(printf, 1, 2))); void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); @@ -57,5 +57,5 @@ void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); void do_log(LogLevel, const char *, va_list); -void cleanup_exit(int); +void cleanup_exit(int) __dead; #endif |