From: Andre Date: Sat, 15 Apr 2006 15:12:40 +0000 (+0200) Subject: gcc-compat: Kill __pure X-Git-Tag: v0.2.12~97 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=e12d1bf20e91fe13be18d367557cd3a7014c4ea5 gcc-compat: Kill __pure It is not used within paraslash and is already defined on MacOS. --- 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 */