Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 130508
Collapse All | Expand All

(-)linux/compiler-gcc3.h (-1 / +1 lines)
Lines 13-16 Link Here
13
#define __must_check		__attribute__((warn_unused_result))
13
#define __must_check		__attribute__((warn_unused_result))
14
#endif
14
#endif
15
15
16
#define __always_inline		inline __attribute__((always_inline))
16
#define __always_inline		__inline__ __attribute__((always_inline))
(-)linux/compiler-gcc4.h (-1 / +1 lines)
Lines 15-18 Link Here
15
#define __attribute_used__	__attribute__((__used__))
15
#define __attribute_used__	__attribute__((__used__))
16
#define __must_check 		__attribute__((warn_unused_result))
16
#define __must_check 		__attribute__((warn_unused_result))
17
#define __compiler_offsetof(a,b) __builtin_offsetof(a,b)
17
#define __compiler_offsetof(a,b) __builtin_offsetof(a,b)
18
#define __always_inline		inline __attribute__((always_inline))
18
#define __always_inline		__inline__ __attribute__((always_inline))
(-)linux/compiler.h (-1 / +1 lines)
Lines 155-161 Link Here
155
#endif
155
#endif
156
156
157
#ifndef __always_inline
157
#ifndef __always_inline
158
#define __always_inline inline
158
#define __always_inline __inline__
159
#endif
159
#endif
160
160
161
#ifdef __cplusplus
161
#ifdef __cplusplus

Return to bug 130508