From e12d1bf20e91fe13be18d367557cd3a7014c4ea5 Mon Sep 17 00:00:00 2001 From: Andre Date: Sat, 15 Apr 2006 17:12:40 +0200 Subject: [PATCH] gcc-compat: Kill __pure It is not used within paraslash and is already defined on MacOS. --- gcc-compat.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/gcc-compat.h b/gcc-compat.h index a3b20d39..919748a8 100644 --- a/gcc-compat.h +++ b/gcc-compat.h @@ -1,6 +1,5 @@ #if __GNUC__ >= 3 # define inline inline __attribute__ ((always_inline)) -# define __pure __attribute__ ((pure)) # define __noreturn __attribute__ ((noreturn)) # define __malloc __attribute__ ((malloc)) # define __used __attribute__ ((used)) @@ -23,7 +22,6 @@ #else # define inline /* no inline */ -# define __pure /* no pure */ # define __noreturn /* no noreturn */ # define __malloc /* no malloc */ # define __used /* no used */ -- 2.39.2