Ruby 4.1.0dev (2026-05-22 revision 3903ef6407b0ecb49da6258b8bc9f80f0ac5b531)
inline.h
Go to the documentation of this file.
1
4#ifndef PRISM_COMPILER_INLINE_H
5#define PRISM_COMPILER_INLINE_H
6
11#if defined(_MSC_VER) && !defined(inline)
12# define PRISM_INLINE __inline
13#else
14# define PRISM_INLINE inline
15#endif
16
17#endif