Commit 6b8d6720 authored by Soren Brinkmann's avatar Soren Brinkmann
Browse files

cdefs.h: Use __deprecated__ instead of deprecated

Use the form with underscores to define the '__deprecated' macro to avoid
collisions with potentially defined macros, as suggested in gcc docs
(https://gcc.gnu.org/onlinedocs/gcc/Attribute-Syntax.html#Attribute-Syntax

).
Signed-off-by: default avatarSoren Brinkmann <soren.brinkmann@xilinx.com>
parent 84091c48
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment