mark usage() as noreturn

This commit is contained in:
Love Hornquist Astrand
2009-08-20 20:13:41 -07:00
parent 3021868ebb
commit 4621ffd93c

View File

@@ -55,6 +55,9 @@ static struct getargs args[] = {
{ "help", 0, arg_flag, &help_flag, NULL, NULL}
};
static void
usage (int ret) __attribute__((noreturn));
static void
usage (int ret)
{