2013-09-20 19:31:06 +00:00
|
|
|
/*
|
|
|
|
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
|
2014-09-24 19:51:04 +00:00
|
|
|
#include <cstdlib>
|
2013-09-20 19:31:06 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
size_t get_allocated_memory();
|
|
|
|
void * malloc(size_t sz);
|
|
|
|
void * realloc(void * ptr, size_t sz);
|
|
|
|
void free(void * ptr);
|
|
|
|
}
|