#include /*!\file \brief Declaration of dynamic memory allocation routine for arrays. $Id: amalloc.h,v 1.5 2004/11/07 23:52:47 chulwoo Exp $ */ //-------------------------------------------------------------------- #ifndef AMALLOC_H #define AMALLOC_H //!< Prevent multiple inclusion CPS_START_NAMESPACE void* amalloc(void* (*allocator)(size_t, const char *vname, const char *fname, const char *cname), size_t, int, ...); CPS_END_NAMESPACE #endif