//----------------------------------------------------------------------------// // GNU GPL OS/K // // // // Authors: spectral` // // NeoX // // // // Desc: Memory allocation utilities // //----------------------------------------------------------------------------// #ifndef _KALBASE_H #include #endif #ifndef _KALEXTRAS_MALLOC_H #define _KALEXTRAS_MALLOC_H //------------------------------------------// // // ¯\_(ツ)_/¯ // #ifndef _STDLIB_H void *malloc(unsigned long); void free(void *); #endif #define AllocMemory malloc #define FreeMemory free //------------------------------------------// #endif