revert previous

Somehow the compat for __dead is not working properly on macos
(cirrus ci) since it complains that parse_debug() does not return
a value in all control paths when it uses usage() (marked as __dead)
to catch a wrong usage.
This commit is contained in:
Omar Polo 2023-07-23 14:13:23 +00:00
parent 67ae3d8e03
commit 88c03474f8
1 changed files with 1 additions and 1 deletions

2
gg.c
View File

@ -305,7 +305,7 @@ get(const char *r)
}
}
static void __dead
static void __attribute__((noreturn))
usage(void)
{
fprintf(stderr, "version: " GG_STRING "\n");