Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at b445e26cbf784cdba10f2b6c3e2cd3ee7bab360a 16 lines 700 B view raw
1/* Never include this file directly. Include <linux/compiler.h> instead. */ 2 3/* These definitions are for GCC v4.x. */ 4#include <linux/compiler-gcc.h> 5 6#define inline inline __attribute__((always_inline)) 7#define __inline__ __inline__ __attribute__((always_inline)) 8#define __inline __inline __attribute__((always_inline)) 9#define __deprecated __attribute__((deprecated)) 10#define __attribute_used__ __attribute__((__used__)) 11#define __attribute_pure__ __attribute__((pure)) 12#define __attribute_const__ __attribute__((__const__)) 13#define noinline __attribute__((noinline)) 14#define __must_check __attribute__((warn_unused_result)) 15#define __compiler_offsetof(a,b) __builtin_offsetof(a,b) 16