forked from KolibriOS/kolibrios
14 lines
198 B
C++
Executable File
14 lines
198 B
C++
Executable File
#include<sys/types.h>
|
|
|
|
extern "C" void * malloc(unsigned int);
|
|
|
|
void * operator new(unsigned int n)
|
|
{
|
|
return malloc(n);
|
|
}
|
|
|
|
void * operator new[](unsigned int n)
|
|
{
|
|
return malloc(n);
|
|
}
|