mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
import KernelEx-4.0-Final
This commit is contained in:
10
core/sharedmem.cpp
Executable file → Normal file
10
core/sharedmem.cpp
Executable file → Normal file
@ -95,3 +95,13 @@ void operator delete(void* ptr)
|
||||
{
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
void* operator new[](size_t size)
|
||||
{
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
void operator delete[](void* ptr)
|
||||
{
|
||||
free(ptr);
|
||||
}
|
||||
|
Reference in New Issue
Block a user