/*******************************************************************
* File: omalloc_provide.c
* Purpose: implementation of ANSI-C conforming malloc functions
* which are to be provided by omalloc library
* Author: obachman@mathematik.uni-kl.de (Olaf Bachmann)
* Created: 11/99
*******************************************************************/
#include "omConfig.h"
#if OM_PROVIDE_MALLOC > 0
#if OM_PROVIDE_MALLOC > 1
#include "omalloc/omalloc_debug.c"
#else
#include "omalloc/omalloc.c"
#endif
#endif
|