mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-15 23:53:11 -05:00
11 lines
168 B
C
11 lines
168 B
C
#ifndef NNS_INLINE_H_
|
|
#define NNS_INLINE_H_
|
|
|
|
#if defined(_MSC_VER) || defined(NNS_FROM_TOOL)
|
|
#define NNS_INLINE __inline
|
|
#else
|
|
#define NNS_INLINE inline
|
|
#endif
|
|
|
|
#endif
|