summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospfctl/ospfctl.c
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2005-02-02 18:52:32 +0000
committerhenning <henning@openbsd.org>2005-02-02 18:52:32 +0000
commitcbb557db18b36b485d555d1e8dd4fc8201526d77 (patch)
tree4c7115cfe2a75ca42091bb91e082e3fa49211d45 /usr.sbin/ospfctl/ospfctl.c
parentsync (diff)
downloadwireguard-openbsd-cbb557db18b36b485d555d1e8dd4fc8201526d77.tar.xz
wireguard-openbsd-cbb557db18b36b485d555d1e8dd4fc8201526d77.zip
usage() is __dead
pt out by Alexander v Gernler
Diffstat (limited to 'usr.sbin/ospfctl/ospfctl.c')
-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;