mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-11 22:02:31 +00:00
Restructure native codebase
This commit is contained in:
14
native/jni/base/new.cpp
Normal file
14
native/jni/base/new.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <new>
|
||||
#include <stdlib.h>
|
||||
|
||||
/* Override libc++ new implementation
|
||||
* to optimize final build size */
|
||||
|
||||
void* operator new(std::size_t s) { return malloc(s); }
|
||||
void* operator new[](std::size_t s) { return malloc(s); }
|
||||
void operator delete(void *p) { free(p); }
|
||||
void operator delete[](void *p) { free(p); }
|
||||
void* operator new(std::size_t s, const std::nothrow_t&) noexcept { return malloc(s); }
|
||||
void* operator new[](std::size_t s, const std::nothrow_t&) noexcept { return malloc(s); }
|
||||
void operator delete(void *p, const std::nothrow_t&) noexcept { free(p); }
|
||||
void operator delete[](void *p, const std::nothrow_t&) noexcept { free(p); }
|
||||
Reference in New Issue
Block a user