diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-04-25 08:40:34 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-04-25 08:40:34 +0000 |
commit | 1449667c9832ca419a4e862797f613802e52879d (patch) | |
tree | b079ecfd13df94c4e6c75717385c41b91b071604 /usr.sbin | |
parent | 4de04b6968eec18bc037a37d3e808dddef1a5380 (diff) |
Mark fatal and fatalx as __dead from a similar diff for bgpd from deraadt@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfd/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ospfd/log.h b/usr.sbin/ospfd/log.h index b45d25ea165..6a30786db20 100644 --- a/usr.sbin/ospfd/log.h +++ b/usr.sbin/ospfd/log.h @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.2 2006/03/08 15:36:28 claudio Exp $ */ +/* $OpenBSD: log.h,v 1.3 2006/04/25 08:40:33 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -27,7 +27,7 @@ void log_warn(const char *, ...); void log_warnx(const char *, ...); void log_info(const char *, ...); void log_debug(const char *, ...); -void fatal(const char *); -void fatalx(const char *); +void fatal(const char *) __dead; +void fatalx(const char *) __dead; #endif /* _LOG_H_ */ |