minor changes in source structure
svn-id: r4949
This commit is contained in:
parent
29811c5fad
commit
ae871cd4a6
6 changed files with 16 additions and 42 deletions
|
@ -144,3 +144,12 @@ int main(int argc, char *argv[])
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void *operator new(size_t size) {
|
||||
return calloc(size, 1);
|
||||
}
|
||||
|
||||
void operator delete(void *ptr) {
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue