pokeplatinum/lib/NitroSystem/include/nnsys/inline.h
luckytyphlosion 320da2296d Move around library includes.
Old structure: put everything in lib/include
New structure: put library includes in their respective library folder. e.g. lib/NitroDWC/include/dwc.h
2023-01-05 18:53:16 -05:00

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