Files
ss/include/MSL_C/new.h
T
2023-12-24 09:59:13 -05:00

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