MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / compiler-gcc+.h
blob6b9308541dcd39216ee88dd1bfe04f3fcd77f627
1 /* Never include this file directly. Include <linux/compiler.h> instead. */
3 /*
4 * These definitions are for Ueber-GCC: always newer than the latest
5 * version and hence sporting everything plus a kitchen-sink.
6 */
7 #include <linux/compiler-gcc.h>
9 #define inline inline __attribute__((always_inline))
10 #define __inline__ __inline__ __attribute__((always_inline))
11 #define __inline __inline __attribute__((always_inline))
12 #define __deprecated __attribute__((deprecated))
13 #define __attribute_used__ __attribute__((__used__))
14 #define __attribute_pure__ __attribute__((pure))
15 #define __attribute_const__ __attribute__((__const__))
16 #define __must_check __attribute__((warn_unused_result))