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
Vitor Santos Costa 18c74933af full dir
2018-06-18 12:16:36 +01:00

12 lines
234 B
C

#ifndef _YAP_INLINE_ONLY_H_
#define _YAP_INLINE_ONLY_H_
#if defined(__GNUC__ )
#define INLINE_ONLY EXTERN inline __attribute__((gnu_inline,always_inline))
//#define INLINE_ONLY
#else
#define INLINE_ONLY EXTERN inline
#endif
#endif