Changeset 13fe1b in git for omalloc/gmalloc.c


Ignore:
Timestamp:
Apr 30, 2001, 11:02:15 AM (23 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
4d59e4136d84df15b329a224051e410d9f7ac557
Parents:
38f6b334b77a57a06e357ad3a927916497dcb9bf
Message:
*hannes: DecAlpha-ccc-port


git-svn-id: file:///usr/local/Singular/svn/trunk@5409 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • omalloc/gmalloc.c

    r38f6b33 r13fe1b  
    11/*******************************************************************
    22 *  File:    gmalloc.c
    3  *  Purpose: implementation of malloc and friends from libc of 
     3 *  Purpose: implementation of malloc and friends from libc of
    44 *           Linux kernel version 5
    5  *  Version: $Id: gmalloc.c,v 1.5 2001-03-22 22:39:07 Singular Exp $
     5 *  Version: $Id: gmalloc.c,v 1.6 2001-04-30 09:01:59 Singular Exp $
    66 *******************************************************************/
    77#include "omMalloc.h"
     
    467467  __ptr_t result;
    468468  unsigned long int adj;
    469  
     469
    470470  /* 9/99 obachman@mathematik.uni-kl.de: prevent calling morecore
    471471     with negative arguments here */
    472472  if ((ptrdiff_t) size < 0) return NULL;
    473  
     473
    474474  result = (*__morecore) (size);
    475475  adj = (unsigned long int) ((unsigned long int) ((char *) result -
     
    14071407  return result;
    14081408}
    1409 
Note: See TracChangeset for help on using the changeset viewer.