summaryrefslogtreecommitdiff
path: root/i965_drv_video/intel_compiler.h
blob: f1f24c85552b5d5891efa73f811ff0408df25d8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _INTEL_COMPILER_H_
#define _INTEL_COMPILER_H_

/**
 * Function inlining
 */
#if defined(__GNUC__)
#  define INLINE __inline__
#elif (__STDC_VERSION__ >= 199901L) /* C99 */
#  define INLINE inline
#else
#  define INLINE
#endif

#endif /* _INTEL_COMPILER_H_ */