#ifndef MMEMORY_H #define MMEMORY_H /**************************************** * Computer Algebra System SINGULAR * ****************************************/ /* $Id: mmalloc.h,v 1.3 2005-05-19 14:38:22 Singular Exp $ */ /* * ABSTRACT: declaration of routines for memory stuff */ #include int mmInit(void); #undef reallocSize #undef freeSize #ifdef __cplusplus extern "C" { #endif void* reallocSize(void* old_addr, size_t old_size, size_t new_size); void freeSize(void* addr, size_t size); #ifdef __cplusplus } #endif #endif