// ascee_alloc.h // // Author: J.A. de Jong - ASCEE // // Description: // memory allocation functions. ////////////////////////////////////////////////////////////////////// #pragma once #ifndef ASCEE_ALLOC_H #define ASCEE_ALLOC_H #include /** * Reserved words for memory allocation. Can be changed to something * else when required. For example for debugging purposes. */ #define a_malloc malloc #define a_free free #define a_realloc realloc #endif // ASCEE_ALLOC_H //////////////////////////////////////////////////////////////////////