34 lines
1007 B
C
34 lines
1007 B
C
|
//----------------------------------------------------------------------------//
|
||
|
// GNU GPL OS/K //
|
||
|
// //
|
||
|
// Authors: spectral` //
|
||
|
// NeoX //
|
||
|
// //
|
||
|
// Desc: Memory allocation utilities //
|
||
|
//----------------------------------------------------------------------------//
|
||
|
|
||
|
#ifndef _KALBASE_H
|
||
|
#include <kalbase.h>
|
||
|
#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
|
||
|
|