This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-rescue/Global.c

11 lines
135 B
C
Raw Permalink Normal View History

2007-04-03 12:47:03 +00:00
#include "Global.h"
void *operator new(size_t sz) {
return malloc(sz);
}
void operator delete(void *p) {
free(p);
}