This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/H/inline-only.h
2012-06-30 17:51:47 +02:00

15 lines
257 B
C

#ifndef _YAP_INLINE_ONLY_H_
#define _YAP_INLINE_ONLY_H_
#ifdef __clang__
#define INLINE_ONLY __attribute__((gnu_inline,always_inline))
#else
#ifdef __GNUC__
#define INLINE_ONLY __attribute__((always_inline))
#else
#define INLINE_ONLY
#endif
#endif
#endif