mirror of
https://github.com/Cxbx-Reloaded/Cxbx-Reloaded.git
synced 2025-04-02 11:11:52 -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
|