aboutsummaryrefslogtreecommitdiff
path: root/src/lzmainfo/lzmainfo.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2011-05-17 11:54:38 +0300
committerLasse Collin <lasse.collin@tukaani.org>2011-05-17 12:27:22 +0300
commitafcff45cee04c5c7d9c333504046ffb63d1418b5 (patch)
treef5f60eca9b8692d148bd742aee93e0f96a5845a3 /src/lzmainfo/lzmainfo.c
parentUpdate THANKS. (diff)
downloadxz-afcff45cee04c5c7d9c333504046ffb63d1418b5.tar.xz
Add underscores to attributes (__attribute((__foo__))).
Diffstat (limited to '')
-rw-r--r--src/lzmainfo/lzmainfo.c4
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);