source: git/omalloc/omMallocSystem.h @ bee06d

spielwiese
Last change on this file since bee06d was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 671 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 *  Version: $Id$
7 *******************************************************************/
8#ifndef OM_MALLOC_SYSTEM_H
9#define OM_MALLOC_SYSTEM_H
10
11/* this is the minimal set of OM_MALLOC_* macros which must be defined */
12#define OM_MALLOC_MALLOC   malloc
13#define OM_MALLOC_REALLOC  realloc
14#define OM_MALLOC_FREE     free
15#define OM_MALLOC_VALLOC   valloc
16#define OM_MALLOC_VFREE(addr, size) OM_MALLOC_FREE(addr)
17
18#endif /* OM_MALLOC_SYSTEM_H */
Note: See TracBrowser for help on using the repository browser.