2192f73b11
- Lots of indenting changes - VC++ is strict with variadic macros - VC++ does not accept unistd.h - new interface for walltime - VC++ does not seem to have support for integer overflow. - VC++ defines YENV_REG? - no access flags, x permissions ignored. - new FindGMP supporting MPIR - make horus optional (c++ is hard).
12 lines
206 B
C
12 lines
206 B
C
#ifndef _YAP_INLINE_ONLY_H_
|
|
#define _YAP_INLINE_ONLY_H_
|
|
|
|
#ifdef __GNUC__
|
|
#define INLINE_ONLY __attribute__((gnu_inline,always_inline))
|
|
//#define INLINE_ONLY
|
|
#else
|
|
#define INLINE_ONLY EXTERN
|
|
#endif
|
|
|
|
#endif
|