From fe8c16cef1d6669074c262fbb7b55d301ca01d74 Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Fri, 11 May 2018 06:55:02 +0000 Subject: [PATCH] [expand] add __dead2 annotation to usage --- usr.bin/expand/expand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/expand/expand.c b/usr.bin/expand/expand.c index b21e49412a9e..26f350d9ac53 100644 --- a/usr.bin/expand/expand.c +++ b/usr.bin/expand/expand.c @@ -59,7 +59,7 @@ static int nstops; static int tabstops[100]; static void getstops(char *); -static void usage(void); +static void usage(void) __dead2; int main(int argc, char *argv[])