mirror of
				https://github.com/topjohnwu/Magisk.git
				synced 2025-10-31 08:44:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			610 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			610 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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&) { return malloc(s); }
 | |
| void* operator new[](std::size_t s, const std::nothrow_t&) { return malloc(s); }
 | |
| void  operator delete(void *p, const std::nothrow_t&) { free(p); }
 | |
| void  operator delete[](void *p, const std::nothrow_t&) { free(p); }
 | 
