mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
git-svn-id: https://cxbx.svn.sourceforge.net/svnroot/cxbx/branches/private/shogun/wip@147 587435c2-1f12-0410-b34b-ee784db558a2
18 lines
241 B
C
18 lines
241 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
|