YAP 7.1.0
inline-only.h
1#ifndef _YAP_INLINE_ONLY_H_
2#define _YAP_INLINE_ONLY_H_
3
4#ifdef __GNUC__
5#define INLINE_ONLY extern inline __attribute__((gnu_inline,always_inline))
6//#define INLINE_ONLY
7#else
8#define INLINE_ONLY EXTERN
9#endif
10
11#endif