GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
1/*====================================================================*\ 2|| Pointer auf die verschiedenen m_alloc-Funktionen, die bei der Suche|| 3|| nach Fehlern in der Speicherverwaltung helfen koennen. || 4\*====================================================================*/ 5 6int *(*m_alloc ) (int ) = (int *(*)(int ))m_alloc_d1; 7int *(*c_alloc ) (int , int) = (int *(*)(int , int))c_alloc_d1; 8int *(*re_alloc) (void *, int) = (int *(*)(void *, int))re_alloc_d1; 9void (*fr_ee ) (void * ) = (void (*)(void * ))fr_ee_d1; 10 11 12