mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 15:25:13 -04:00
11 lines
159 B
C
11 lines
159 B
C
#ifndef MSL_NEW_H_
|
|
#define MSL_NEW_H_
|
|
|
|
#include "MSL_C/MSL_Common/Src/stddef.h"
|
|
|
|
inline void* operator new(size_t size, void* ptr) {
|
|
return ptr;
|
|
}
|
|
|
|
#endif
|