Changeset e8b8fa in git
- Timestamp:
- Jun 8, 1999, 9:37:18 AM (24 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 5e4527f9b340cf9a0adbbb804253b7cdc27332ad
- Parents:
- 2923fa1d357f326a0c329b2f7097062eb50d9bf0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/mmheap.h
r2923fa re8b8fa 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: mmheap.h,v 1. 7 1999-06-08 07:34:38 Singular Exp $ */6 /* $Id: mmheap.h,v 1.8 1999-06-08 07:37:18 Singular Exp $ */ 7 7 #include <stdlib.h> 8 8 #include "mod2.h" … … 72 72 73 73 #define mmAllocHeap(res, heap)\ 74 (res) = (void *)mmDebugAllocHeap(heap, __FILE__, __LINE__)74 (res) = mmDebugAllocHeap(heap, __FILE__, __LINE__) 75 75 void * mmDebugAllocHeap(memHeap heap, const char*, int ); 76 76 … … 177 177 register memHeap _heap = heap; \ 178 178 if ((_heap)->current == NULL) mmAllocNewHeapPage(_heap); \ 179 ( (void*) (what)) = (_heap)->current; \179 (what) = (void *)((_heap)->current); \ 180 180 (_heap)->current = *((void**)(_heap)->current); \ 181 181 } \
Note: See TracChangeset
for help on using the changeset viewer.