~ubuntu-branches/debian/stretch/libsereal-encoder-perl/stretch

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SRL_INLINE_H_
#define SRL_INLINE_H_

/* We do this because it seems that PERL_STATIC_INLINE isn't defined
 * or something like that. I haven't figured out why not.
 */

#ifdef NOINLINE
#   define SRL_STATIC_INLINE STATIC
#elif defined(_MSC_VER)
#   define SRL_STATIC_INLINE STATIC __inline
#else
#   define SRL_STATIC_INLINE STATIC inline
#endif


#endif