dumpon: Move the _Noreturn keyword before the return type

This fixes a warning from GCC 14 when compiling with the native C11
_Noreturn rather than the older GNU C function attribute:

sbin/dumpon/dumpon.c:73:1: error: '_Noreturn' is not at beginning of declaration [-Werror=old-style-declaration]
   73 | static void _Noreturn
      | ^~~~~~
This commit is contained in:
John Baldwin
2025-01-09 12:52:50 -05:00
parent 2cadbe468a
commit d0d7fcbae4
+1 -1
View File
@@ -70,7 +70,7 @@
static int verbose;
static void _Noreturn
static _Noreturn void
usage(void)
{
fprintf(stderr,