diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-09-11 19:03:35 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-09-22 20:06:27 +0300 |
commit | 217958d88713b5dc73d366d24dd64b2b311b86fe (patch) | |
tree | 47db7ba64a4b2c72ac32623dd296cb3757038fdb /src/xz/options.c | |
parent | Remove incorrect uses of __attribute__((__malloc__)). (diff) | |
download | xz-217958d88713b5dc73d366d24dd64b2b311b86fe.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/xz/options.c')
-rw-r--r-- | src/xz/options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xz/options.c b/src/xz/options.c index f4662131..4d5e899c 100644 --- a/src/xz/options.c +++ b/src/xz/options.c @@ -241,7 +241,8 @@ enum { }; -static void lzma_attribute((__noreturn__)) +tuklib_attr_noreturn +static void error_lzma_preset(const char *valuestr) { message_fatal(_("Unsupported LZMA1/LZMA2 preset: %s"), valuestr); |