From: Paul Eggert Date: Mon, 1 Nov 2021 05:30:38 +0000 (-0700) Subject: maint: remove unused __attribute__ defn X-Git-Tag: v9.1~193 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9287ce5bbc7ce3d9343282c8a1dcba008392b8dd;p=thirdparty%2Fcoreutils.git maint: remove unused __attribute__ defn * gl/lib/randread.c (__attribute__): Remove; no longer used after the recent _Noreturn change. --- diff --git a/gl/lib/randread.c b/gl/lib/randread.c index 5ed42b547f..6c29a62e4c 100644 --- a/gl/lib/randread.c +++ b/gl/lib/randread.c @@ -45,12 +45,6 @@ #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