Commit 572f2a49 authored by Linus Torvalds's avatar Linus Torvalds

Quoth James: "Oops, mea culpa on that one. It's missing a trailing `__'

on the end of __GNUC_MINOR"
parent 49b5e1f7
......@@ -19,7 +19,7 @@
* Usage is:
* int __deprecated foo(void)
*/
#if ( __GNUC__ == 3 && __GNUC_MINOR > 0 ) || __GNUC__ > 3
#if ( __GNUC__ == 3 && __GNUC_MINOR__ > 0 ) || __GNUC__ > 3
#define __deprecated __attribute__((deprecated))
#else
#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