Changeset 5f5ce93 in git


Ignore:
Timestamp:
Jun 14, 2006, 9:54:09 AM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5d59a14bbc60bee33dd8eb78c746500e37fb2f5d
Parents:
397246b2b5108fecc577b99cafdd57af0b038c18
Message:
*hannes: string.h included removed
         hint of hankedr@auburn.edu: Solaris/x86, Solaris/x86_64


git-svn-id: file:///usr/local/Singular/svn/trunk@9214 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
omalloc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • omalloc/omAllocFunc.h

    r397246b r5f5ce93  
    66 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    77 *  Created: 11/99
    8  *  Version: $Id: omAllocFunc.h,v 1.6 2005-07-29 10:56:45 Singular Exp $
     8 *  Version: $Id: omAllocFunc.h,v 1.7 2006-06-14 07:54:08 Singular Exp $
    99 *******************************************************************/
    1010
     
    1616void* omMemalignFunc(size_t size_1, size_t size_2);
    1717#else
    18 #if  defined(__sparc)
     18#if (defined(__sun) && (defined(__sparc) || defined(__i386) || defined(__x86_64)))
    1919extern void* omMemalignFunc(size_t, size_t);
    2020#else
  • omalloc/omInline.h

    r397246b r5f5ce93  
    55 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    66 *  Created: 11/99
    7  *  Version: $Id: omInline.h,v 1.9 2006-04-28 15:17:26 Singular Exp $
     7 *  Version: $Id: omInline.h,v 1.10 2006-06-14 07:54:08 Singular Exp $
    88 *******************************************************************/
    99#if defined(OM_INLINE) || defined(OM_ALLOC_C)
     
    1111#ifndef OM_INLINE_H
    1212#define OM_INLINE_H
    13 #include <string.h>
    1413
    1514OM_INLINE_IMPL omBin omGetBinOfPage(omBinPage page)
  • omalloc/omalloc.c

    r397246b r5f5ce93  
    55 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
    66 *  Created: 11/99
    7  *  Version: $Id: omalloc.c,v 1.11 2005-07-29 10:56:45 Singular Exp $
     7 *  Version: $Id: omalloc.c,v 1.12 2006-06-14 07:54:09 Singular Exp $
    88 *******************************************************************/
    99
     
    5858#if defined(sgi)
    5959void* memalign(size_t size_1, size_t size_2)
    60 #elif defined(__sparc)
     60#elif (defined(__sun) && (defined(__sparc) || defined(__i386) || defined(__x86_64)))
    6161void* memalign(size_t size_1, size_t size_2)
    6262#else
Note: See TracChangeset for help on using the changeset viewer.