//--------------------------------------------------------------------------// // This file is in the public domain. // //--------------------------------------------------------------------------// #ifndef AMIGA_MEM_H #define AMIGA_MEM_H //--------------------------------------------------------------------------// #include //--------------------------------------------------------------------------// void* allocmem(size_t); void freemem(void*); void freeall(); //--------------------------------------------------------------------------// #define strdup(s) managed_strdup(s) char *strdup(const char *s1); //--------------------------------------------------------------------------// extern unsigned int debugging; //--------------------------------------------------------------------------// #endif