source: git/omalloc/omMallocSystem.h @ 6ce030f

spielwiese
Last change on this file since 6ce030f 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: 653 bytes
Line 
1/*******************************************************************
2 *  File:    omMallocSystem.h
3 *  Purpose: declaration of macros for malloc to be used from the system
4 *  Author:  obachman (Olaf Bachmann)
5 *  Created: 11/99
6 *******************************************************************/
7#ifndef OM_MALLOC_SYSTEM_H
8#define OM_MALLOC_SYSTEM_H
9
10/* this is the minimal set of OM_MALLOC_* macros which must be defined */
11#define OM_MALLOC_MALLOC   malloc
12#define OM_MALLOC_REALLOC  realloc
13#define OM_MALLOC_FREE     free
14#define OM_MALLOC_VALLOC   valloc
15#define OM_MALLOC_VFREE(addr, size) OM_MALLOC_FREE(addr)
16
17#endif /* OM_MALLOC_SYSTEM_H */
Note: See TracBrowser for help on using the repository browser.