Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v2.6.36-rc1 12 lines 223 B view raw
1#ifndef _PERF_LINUX_COMPILER_H_ 2#define _PERF_LINUX_COMPILER_H_ 3 4#ifndef __always_inline 5#define __always_inline inline 6#endif 7#define __user 8#define __attribute_const__ 9 10#define __used __attribute__((__unused__)) 11 12#endif