Changeset 45e70f in git


Ignore:
Timestamp:
Jul 29, 2005, 12:57:05 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
763bf07f7e9d291dfd5cd2994d10d3c9486dcf9a
Parents:
5fdd0f4c6bdee0b75239807fd48747c213f3ec43
Message:
*hannes: solaris(__sparc) port


git-svn-id: file:///usr/local/Singular/svn/trunk@8479 2c84dea3-7e68-4137-9b89-c4e89433aadc
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:36 Singular Exp $ */
     1/* $Id: mp_gmp.h,v 1.2 2005-07-29 10:57:05 Singular Exp $ */
    22
    33#ifndef MP_GMP_H
     
    88#undef __cplusplus
    99#include <gmp.h>
    10 #define __cplusplus
     10#define __cplusplus 1
    1111}
    1212#else
  • omalloc/omAllocFunc.h

    r5fdd0f r45e70f  
    66 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    77 *  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 $
    99 *******************************************************************/
    1010
     
    1313void omFreeFunc(void* addr);
    1414void* omVallocFunc(size_t size);
    15 #if defined(sgi) || defined(SunOs_5)
     15#if defined(sgi)
    1616void* omMemalignFunc(size_t size_1, size_t size_2);
    1717#else
     18#if  defined(__sparc)
     19extern void* omMemalignFunc(size_t, size_t);
     20#else
    1821void* omMemalignFunc(void* alignment, size_t size);
     22#endif
    1923#endif
    2024void* omReallocFunc(void* old_addr, size_t new_size);
  • omalloc/omalloc.c

    r5fdd0f r45e70f  
    55 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    66 *  Created: 11/99
    7  *  Version: $Id: omalloc.c,v 1.10 2004-01-29 15:58:54 Singular Exp $
     7 *  Version: $Id: omalloc.c,v 1.11 2005-07-29 10:56:45 Singular Exp $
    88 *******************************************************************/
    99
     
    5757
    5858#if defined(sgi)
     59void* memalign(size_t size_1, size_t size_2)
     60#elif defined(__sparc)
    5961void* memalign(size_t size_1, size_t size_2)
    6062#else
Note: See TracChangeset for help on using the changeset viewer.