Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

563680 views
1
/*====================================================================*\
2
|| Pointer auf die verschiedenen m_alloc-Funktionen, die bei der Suche||
3
|| nach Fehlern in der Speicherverwaltung helfen koennen. ||
4
\*====================================================================*/
5
6
int *(*m_alloc ) (int ) = (int *(*)(int ))m_alloc_d1;
7
int *(*c_alloc ) (int , int) = (int *(*)(int , int))c_alloc_d1;
8
int *(*re_alloc) (void *, int) = (int *(*)(void *, int))re_alloc_d1;
9
void (*fr_ee ) (void * ) = (void (*)(void * ))fr_ee_d1;
10
11
12