From 9287ce5bbc7ce3d9343282c8a1dcba008392b8dd Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 31 Oct 2021 22:30:38 -0700 Subject: [PATCH] maint: remove unused __attribute__ defn * gl/lib/randread.c (__attribute__): Remove; no longer used after the recent _Noreturn change. --- gl/lib/randread.c | 6 ------ 1 file changed, 6 deletions(-) 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 -- 2.47.2