source: git/Singular/mmalloc.h @ 6c01d6b

spielwiese
Last change on this file since 6c01d6b was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 485 bytes
Line 
1#ifndef MMEMORY_H
2#define MMEMORY_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: declaration of routines for memory stuff
8*/
9
10#include <stdlib.h>
11
12int mmInit(void);
13#undef reallocSize
14#undef freeSize
15
16#ifdef __cplusplus
17extern "C"
18{
19#endif
20  void* reallocSize(void* old_addr, size_t old_size, size_t new_size);
21  void  freeSize(void* addr, size_t size);
22#ifdef __cplusplus
23}
24#endif
25#endif
Note: See TracBrowser for help on using the repository browser.