From fbf59d5891c7b56fe360aef494bfe78dc8928e6a Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Sun, 28 Apr 2013 22:52:43 +0000 Subject: [PATCH] Mark usage() __dead2 --- bin/hostname/hostname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hostname/hostname.c b/bin/hostname/hostname.c index 87136eb5f408..ecc319db6b17 100644 --- a/bin/hostname/hostname.c +++ b/bin/hostname/hostname.c @@ -49,7 +49,7 @@ __FBSDID("$FreeBSD$"); #include #include -static void usage(void); +static void usage(void) __dead2; int main(int argc, char *argv[])