source: git/omalloc/omAllocFunc.c @ 39497b

spielwiese
Last change on this file since 39497b was 13fe1b, checked in by Hans Schönemann <hannes@…>, 23 years ago
*hannes: DecAlpha-ccc-port git-svn-id: file:///usr/local/Singular/svn/trunk@5409 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 852 bytes
Line 
1/*******************************************************************
2 *  File:    omAllocFunc.c
3 *  Purpose: implementation of ANSI-C conforming malloc functions
4 *           which are sure to be functions, which start with the om prefix,
5 *           and end with the Func suffix.
6 *  Author:  obachman@mathematik.uni-kl.de (Olaf Bachmann)
7 *  Created: 11/99
8 *  Version: $Id: omAllocFunc.c,v 1.2 2001-04-30 09:02:00 Singular Exp $
9 *******************************************************************/
10
11#define malloc      omMallocFunc
12#define calloc      omCallocFunc
13#define free        omFreeFunc
14#define freeSize    omFreeSizeFunc
15#define realloc     omReallocFunc
16#define reallocSize omReallocSizeFunc
17#define memalign    omMemalignFunc
18#define strdup      omStrdupFunc
19#define valloc      omVallocFunc
20
21#define OMALLOC_FUNC
22#include "omalloc.c"
Note: See TracBrowser for help on using the repository browser.