summaryrefslogtreecommitdiff
path: root/usr.sbin/ospfctl
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2005-02-02 18:52:33 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2005-02-02 18:52:33 +0000
commit83a00afe7a1486ad9fcba02ca391baa0485ace4d (patch)
treefa0b316932b19866f520f7d6045fd7cf77bb8827 /usr.sbin/ospfctl
parentc27f792810fde5dc9397ebc1fd488df0499779f9 (diff)
usage() is __dead
pt out by Alexander v Gernler
Diffstat (limited to 'usr.sbin/ospfctl')
-rw-r--r--usr.sbin/ospfctl/ospfctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ospfctl/ospfctl.c b/usr.sbin/ospfctl/ospfctl.c
index 5120d50ef6c..a6281450315 100644
--- a/usr.sbin/ospfctl/ospfctl.c
+++ b/usr.sbin/ospfctl/ospfctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ospfctl.c,v 1.2 2005/01/28 17:26:05 norby Exp $ */
+/* $OpenBSD: ospfctl.c,v 1.3 2005/02/02 18:52:32 henning Exp $ */
/*
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -36,7 +36,7 @@
#include "parser.h"
#include "log.h"
-void usage(void);
+__dead void usage(void);
int show_summary_msg(struct imsg *, int);
int show_interface_msg(struct imsg *);
void print_baudrate(u_long);
@@ -57,7 +57,7 @@ int show_nbr_detail_msg(struct imsg *);
struct imsgbuf *ibuf;
-void
+__dead void
usage(void)
{
extern char *__progname;