12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include <stdlib.h>
- #include <new>
- #include "sgx_defs.h"
- #include "sgx_trts.h"
- #include "internal/se_cdefs.h"
- SGX_WEAK void* SGXAPI operator new[](size_t dwBytes)
- {
- return operator new(dwBytes);
- }
|