diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-05-17 11:54:38 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2011-05-17 11:54:38 +0300 |
commit | 4c6e146df99696920f12410fb17754412797ef36 (patch) | |
tree | 3208666bbb8b3a11c3e0c24e7c3d4d26f05d3144 /src/lzmainfo | |
parent | xz: Fix input file position when --single-stream is used. (diff) | |
download | xz-4c6e146df99696920f12410fb17754412797ef36.tar.xz |
Add underscores to attributes (__attribute((__foo__))).
Diffstat (limited to 'src/lzmainfo')
-rw-r--r-- | src/lzmainfo/lzmainfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lzmainfo/lzmainfo.c b/src/lzmainfo/lzmainfo.c index 3100dc63..b0ccdfb4 100644 --- a/src/lzmainfo/lzmainfo.c +++ b/src/lzmainfo/lzmainfo.c @@ -26,7 +26,7 @@ #endif -static void lzma_attribute((noreturn)) +static void lzma_attribute((__noreturn__)) help(void) { printf( @@ -45,7 +45,7 @@ _("Usage: %s [--help] [--version] [FILE]...\n" } -static void lzma_attribute((noreturn)) +static void lzma_attribute((__noreturn__)) version(void) { puts("lzmainfo (" PACKAGE_NAME ") " LZMA_VERSION_STRING); |