mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
13 lines
162 B
C++
13 lines
162 B
C++
/*#ifndef LIB_MALLOC_H
|
|
#define LIB_MALLOC_H*/
|
|
|
|
extern "C" {
|
|
#include <malloc.h>
|
|
}
|
|
|
|
void * operator new (unsigned int size) {
|
|
return malloc(size);
|
|
}
|
|
|
|
/*#endif*/
|