https://github.com/Singular/Sources
Raw File
Tip revision: 35c6e2c47bae1f858ec6f4a0cdab911b80a1c383 authored by Hans Schoenemann on 22 January 2021, 14:55:14 UTC
fix: map Z, Zn ->Zp, mpz_z ->Zp
Tip revision: 35c6e2c
omMalloc.h
/*******************************************************************
 *  File:    omMallocSystem.h
 *  Purpose: declaration of macros for malloc to be used from the system
 *  Author:  obachman (Olaf Bachmann)
 *  Created: 11/99
 *******************************************************************/
#ifndef OM_MALLOC_H
#define OM_MALLOC_H

#include "omConfig.h"

#ifdef OMALLOC_USES_SYSTEM_MALLOC
#include "omalloc/omMallocSystem.h"
#endif

#ifdef OMALLOC_USES_EXTERNAL_MALLOC
#include EXTERNAL_MALLOC_HEADER
#endif

#ifdef OMALLOC_USES_PMALLOC
#include "omalloc/pmalloc.h"
#endif

#ifdef OMALLOC_USES_GMALLOC
#include "omalloc/gmalloc.h"
#endif

#endif /* OM_MALLOC_H */

back to top