mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
18 lines
223 B
C
18 lines
223 B
C
|
|
#ifndef __OPENXDK_MALLOC__
|
|
#define __OPENXDK_MALLOC__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//dummy malloc to make bitmap lib compile :P
|
|
|
|
void *malloc(size_t);
|
|
void free(void *);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|