12345678910111213141516171819 |
- //
- // RParticleGlobalStuff.cpp
- // cocos2d_libs
- //
- // Created by 徐俊杰 on 2020/6/15.
- //
- #include "rparticle/Macros/RParticleGlobalStuff.h"
- NS_RRP_BEGIN
- void* malloc_internal(size_t size, int align)
- {
- return UNITY_LL_ALLOC(size, align);
- }
- NS_RRP_END
|