pokeplatinum/lib/NitroSDK/include/nitro/sinit.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

16 lines
350 B
C

#if defined(SDK_CW) || defined(__MWERKS__)
static void NitroStaticInit(void);
#pragma define_section SINIT ".sinit" abs32 RWX
#pragma section SINIT begin
SDK_FORCE_EXPORT static void * NitroStaticInit_[] = {NitroStaticInit};
#pragma section SINIT end
#elif defined(SDK_ADS)
TO BE DEFINED
#elif defined(SDK_GCC)
TO BE DEFINED
#endif