source: git/Singular/mmalloc.h @ 4bada2

spielwiese
Last change on this file since 4bada2 was e6f615, checked in by Max Horn <max@…>, 10 years ago
Get rid of empty mmInit() functions
  • Property mode set to 100644
File size: 467 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
12#undef reallocSize
13#undef freeSize
14
15#ifdef __cplusplus
16extern "C"
17{
18#endif
19  void* reallocSize(void* old_addr, size_t old_size, size_t new_size);
20  void  freeSize(void* addr, size_t size);
21#ifdef __cplusplus
22}
23#endif
24#endif
Note: See TracBrowser for help on using the repository browser.