]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: remove unused __attribute__ defn
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 1 Nov 2021 05:30:38 +0000 (22:30 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 1 Nov 2021 05:36:46 +0000 (22:36 -0700)
* gl/lib/randread.c (__attribute__): Remove; no longer
used after the recent _Noreturn change.

gl/lib/randread.c

index 5ed42b547f24c8c142cfec3c8aefff6ee473e212..6c29a62e4cd2427e6f777fc0b401d3c2fafc7361 100644 (file)
 #include "unlocked-io.h"
 #include "xalloc.h"
 
-#ifndef __attribute__
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
-#  define __attribute__(x) /* empty */
-# endif
-#endif
-
 #ifndef MIN
 # define MIN(a, b) ((a) < (b) ? (a) : (b))
 #endif