diff options
author | danh-arm <dan.handley@arm.com> | 2016-01-25 11:02:42 +0000 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2016-01-25 11:02:42 +0000 |
commit | 870d881ced126bd492fe96f6a7bedd0d869dd23a (patch) | |
tree | 8879dd90dc615ab0d77c5faa2424679123988166 | |
parent | 01fc3f7300e86b0b672977133c3028d638d0c672 (diff) | |
parent | 6b8d6720cc1fb8fcb2c21d3f6124e04aed889c11 (diff) |
Merge pull request #496 from Xilinx/attr-deprecated
cdefs.h: Use __deprecated__ instead of deprecated
-rw-r--r-- | include/stdlib/sys/cdefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib/sys/cdefs.h b/include/stdlib/sys/cdefs.h index e6960f68..70c09fdb 100644 --- a/include/stdlib/sys/cdefs.h +++ b/include/stdlib/sys/cdefs.h @@ -283,7 +283,7 @@ #if __GNUC_PREREQ__(3, 1) #define __noinline __attribute__ ((__noinline__)) -#define __deprecated __attribute__ ((deprecated)) +#define __deprecated __attribute__ ((__deprecated__)) #else #define __noinline #define __deprecated |