=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/log.h,v retrieving revision 1.9.2.2 retrieving revision 1.10 diff -u -r1.9.2.2 -r1.10 --- src/usr.bin/ssh/log.h 2004/08/19 22:37:31 1.9.2.2 +++ src/usr.bin/ssh/log.h 2003/09/23 20:17:11 1.10 @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.9.2.2 2004/08/19 22:37:31 brad Exp $ */ +/* $OpenBSD: log.h,v 1.10 2003/09/23 20:17:11 markus Exp $ */ /* * Author: Tatu Ylonen @@ -48,7 +48,7 @@ SyslogFacility log_facility_number(char *); LogLevel log_level_number(char *); -void fatal(const char *, ...) __dead __attribute__((format(printf, 1, 2))); +void fatal(const char *, ...) __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 debug3(const char *, ...) __attribute__((format(printf, 1, 2))); void do_log(LogLevel, const char *, va_list); -void cleanup_exit(int) __dead; +void cleanup_exit(int); #endif