File: srl_inline.h

package info (click to toggle)
libsereal-decoder-perl 4.005%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,952 kB
  • sloc: ansic: 8,105; perl: 5,782; sh: 25; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (12)
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