diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-09-11 19:03:35 +0300 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-10-31 01:03:25 +0800 |
commit | b71b8922ef3971e5ccffd1e213888d44abe21d11 (patch) | |
tree | 2542fa029c9355df034f8a724a7cce7c587c348c /src/lzmainfo | |
parent | Remove incorrect uses of __attribute__((__malloc__)). (diff) | |
download | xz-b71b8922ef3971e5ccffd1e213888d44abe21d11.tar.xz |
xz, xzdec, lzmainfo: Use tuklib_attr_noreturn.
For compatibility with C23's [[noreturn]], tuklib_attr_noreturn
must be at the beginning of declaration (before "extern" or
"static", and even before any GNU C's __attribute__).
This commit also moves all other function attributes to
the beginning of function declarations. "extern" is kept
at the beginning of a line so the attributes are listed on
separate lines before "extern" or "static".
Diffstat (limited to 'src/lzmainfo')
-rw-r--r-- | src/lzmainfo/lzmainfo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lzmainfo/lzmainfo.c b/src/lzmainfo/lzmainfo.c index b0ccdfb4..71e62958 100644 --- a/src/lzmainfo/lzmainfo.c +++ b/src/lzmainfo/lzmainfo.c @@ -26,7 +26,8 @@ #endif -static void lzma_attribute((__noreturn__)) +tuklib_attr_noreturn +static void help(void) { printf( @@ -45,7 +46,8 @@ _("Usage: %s [--help] [--version] [FILE]...\n" } -static void lzma_attribute((__noreturn__)) +tuklib_attr_noreturn +static void version(void) { puts("lzmainfo (" PACKAGE_NAME ") " LZMA_VERSION_STRING); |