From 51f7ab6162a1be2e52d7b2ccc53acb6700769d0b Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 10 Apr 2007 18:40:05 +0000 Subject: [PATCH] - add ATTRIBUTE_DEPRECATED for functions that should be removed in the future. This is ment to provide means to point at cruft marked for cleanup. --- include/platform.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/platform.h b/include/platform.h index 69d031d..51add6c 100644 --- a/include/platform.h +++ b/include/platform.h @@ -54,8 +54,10 @@ # define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m))) # if __GNUC_PREREQ (3,0) # define ATTRIBUTE_ALWAYS_INLINE __attribute__ ((always_inline)) inline +# define ATTRIBUTE_DEPRECATED __attribute__ ((__deprecated__)) # else # define ATTRIBUTE_ALWAYS_INLINE inline +# define ATTRIBUTE_DEPRECATED /* n/a */ # endif /* -fwhole-program makes all symbols local. The attribute externally_visible -- 2.7.4