20 lines
361 B
C
20 lines
361 B
C
|
/*
|
||
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
||
|
Released under Apache 2.0 license as described in the file LICENSE.
|
||
|
|
||
|
Author: Leonardo de Moura
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
namespace lean {
|
||
|
size_t get_allocated_memory();
|
||
|
long long get_thread_allocated_memory();
|
||
|
void * malloc(size_t sz);
|
||
|
void * realloc(void * ptr, size_t sz);
|
||
|
void free(void * ptr);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|