2009-10-17 15:12:33 +00:00
|
|
|
#ifndef _PERF_LINUX_COMPILER_H_
|
|
|
|
#define _PERF_LINUX_COMPILER_H_
|
|
|
|
|
|
|
|
#ifndef __always_inline
|
|
|
|
#define __always_inline inline
|
|
|
|
#endif
|
|
|
|
#define __user
|
2011-08-18 11:37:21 +00:00
|
|
|
#ifndef __attribute_const__
|
2009-10-17 15:12:33 +00:00
|
|
|
#define __attribute_const__
|
2011-08-18 11:37:21 +00:00
|
|
|
#endif
|
2009-10-17 15:12:33 +00:00
|
|
|
|
2010-03-25 22:58:59 +00:00
|
|
|
#define __used __attribute__((__unused__))
|
2012-08-07 13:20:46 +00:00
|
|
|
#define __packed __attribute__((__packed__))
|
2010-03-25 22:58:59 +00:00
|
|
|
|
2012-09-10 22:14:59 +00:00
|
|
|
#ifndef __force
|
|
|
|
#define __force
|
|
|
|
#endif
|
|
|
|
|
2009-10-17 15:12:33 +00:00
|
|
|
#endif
|