exclude_tests: use _Noreturn
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 12 Jul 2011 08:05:34 +0000 (01:05 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 12 Jul 2011 08:05:34 +0000 (01:05 -0700)
ChangeLog
tests/test-exclude.c

index 2bbc93c..5c7bc01 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
 2011-07-12  Paul Eggert  <eggert@cs.ucla.edu>
 
-       argmatch-tests: use _Noreturn
-       * tests/test-argmatch.c (_GL_ATTRIBUTE_NORETURN): Remove.
+       argmatch-tests, exclude_tests: use _Noreturn
+       * tests/test-argmatch.c, tests/test-exclude.c (_GL_ATTRIBUTE_NORETURN):
+       Remove.
        (ARGMATCH_DIE_DECL): Use _Noreturn instead.
 
        stdlib: use _Noreturn
index 8b1164a..9c7997d 100644 (file)
@@ -64,13 +64,7 @@ ARGMATCH_VERIFY (exclude_keywords, exclude_flags);
    thus must link with a definition of that function.  Provide it here.  */
 #ifdef ARGMATCH_DIE_DECL
 
-# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)
-#  define _GL_ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
-# else
-#  define _GL_ATTRIBUTE_NORETURN /* empty */
-# endif
-
-ARGMATCH_DIE_DECL _GL_ATTRIBUTE_NORETURN;
+_Noreturn ARGMATCH_DIE_DECL;
 ARGMATCH_DIE_DECL { exit (1); }
 
 #endif