summaryrefslogtreecommitdiff
path: root/src/memory.cc
blob: de4bc0c6b67d69a77b803630fd28d819f05ac660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23


// This file contains definition of C++ new/delete operators


#include <stddef.h>
#include <malloc.h>
#include "stdexcept.h"

void * operator new(size_t size) {
    void * mem = malloc(size);
    if(mem == NULL) {
        throw std::bad_alloc();
    }

    return mem;
}


void operator delete(void * ptr) {
    free(ptr);
}