12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef _PSE_PR_INC_H_
- #define _PSE_PR_INC_H_
- #include <stdint.h>
- #include <stdlib.h>
- #include <stddef.h>
- #include "se_cdefs.h"
- #include "ae_ipp.h"
- #include "sgx_utils.h"
- #include "aeerror.h"
- #define PSE_PR_SAFE_DELETE(x) if (x) { delete (x); (x) = nullptr; }
- #define PSE_PR_SAFE_DELETE_ARRAY(x) if (x) { delete[] (unsigned char*)(x); (x)=nullptr; }
- #endif
|