Changeset 45e70f in git
- Timestamp:
- Jul 29, 2005, 12:57:05 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 763bf07f7e9d291dfd5cd2994d10d3c9486dcf9a
- Parents:
- 5fdd0f4c6bdee0b75239807fd48747c213f3ec43
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
MP/MP/mp_gmp.h
r5fdd0f r45e70f 1 /* $Id: mp_gmp.h,v 1. 1 2002-11-05 12:01:36Singular Exp $ */1 /* $Id: mp_gmp.h,v 1.2 2005-07-29 10:57:05 Singular Exp $ */ 2 2 3 3 #ifndef MP_GMP_H … … 8 8 #undef __cplusplus 9 9 #include <gmp.h> 10 #define __cplusplus 10 #define __cplusplus 1 11 11 } 12 12 #else -
omalloc/omAllocFunc.h
r5fdd0f r45e70f 6 6 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 7 7 * Created: 11/99 8 * Version: $Id: omAllocFunc.h,v 1. 5 2005-07-28 18:26:15 Singular Exp $8 * Version: $Id: omAllocFunc.h,v 1.6 2005-07-29 10:56:45 Singular Exp $ 9 9 *******************************************************************/ 10 10 … … 13 13 void omFreeFunc(void* addr); 14 14 void* omVallocFunc(size_t size); 15 #if defined(sgi) || defined(SunOs_5)15 #if defined(sgi) 16 16 void* omMemalignFunc(size_t size_1, size_t size_2); 17 17 #else 18 #if defined(__sparc) 19 extern void* omMemalignFunc(size_t, size_t); 20 #else 18 21 void* omMemalignFunc(void* alignment, size_t size); 22 #endif 19 23 #endif 20 24 void* omReallocFunc(void* old_addr, size_t new_size); -
omalloc/omalloc.c
r5fdd0f r45e70f 5 5 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 6 6 * Created: 11/99 7 * Version: $Id: omalloc.c,v 1.1 0 2004-01-29 15:58:54Singular Exp $7 * Version: $Id: omalloc.c,v 1.11 2005-07-29 10:56:45 Singular Exp $ 8 8 *******************************************************************/ 9 9 … … 57 57 58 58 #if defined(sgi) 59 void* memalign(size_t size_1, size_t size_2) 60 #elif defined(__sparc) 59 61 void* memalign(size_t size_1, size_t size_2) 60 62 #else
Note: See TracChangeset
for help on using the changeset viewer.