source: git/omalloc/omAllocFunc.c @ fb104b

fieker-DuValspielwiese
Last change on this file since fb104b was 599326, checked in by Kai Krüger <krueger@…>, 14 years ago
Anne, Kai, Frank: - changes to #include "..." statements to allow cleaner build structure - affected directories: omalloc, kernel, Singular - not yet done: IntergerProgramming git-svn-id: file:///usr/local/Singular/svn/trunk@13032 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 805 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$
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/omalloc.c>
Note: See TracBrowser for help on using the repository browser.