source: git/omalloc/omAllocFunc.c @ f5d2647

spielwiese
Last change on this file since f5d2647 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 787 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 *******************************************************************/
9
10#define malloc      omMallocFunc
11#define calloc      omCallocFunc
12#define free        omFreeFunc
13#define freeSize    omFreeSizeFunc
14#define realloc     omReallocFunc
15#define reallocSize omReallocSizeFunc
16#define memalign    omMemalignFunc
17#define strdup      omStrdupFunc
18#define valloc      omVallocFunc
19
20#define OMALLOC_FUNC
21#include <omalloc/omalloc.c>
Note: See TracBrowser for help on using the repository browser.