mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 07:11:42 +00:00
move decl of ICARUS_Malloc/ICARUS_Free for BlockStream.h
This commit is contained in:
parent
841850ecec
commit
8360d97343
1 changed files with 3 additions and 4 deletions
|
@ -22,6 +22,9 @@ enum WL_e {
|
||||||
#define STL_ITERATE( a, b ) for ( a = b.begin(); a != b.end(); a++ )
|
#define STL_ITERATE( a, b ) for ( a = b.begin(); a != b.end(); a++ )
|
||||||
#define STL_INSERT( a, b ) a.insert( a.end(), b );
|
#define STL_INSERT( a, b ) a.insert( a.end(), b );
|
||||||
|
|
||||||
|
extern void *ICARUS_Malloc(int iSize);
|
||||||
|
extern void ICARUS_Free(void *pMem);
|
||||||
|
|
||||||
#include "Tokenizer.h"
|
#include "Tokenizer.h"
|
||||||
#include "BlockStream.h"
|
#include "BlockStream.h"
|
||||||
#include "Interpreter.h"
|
#include "Interpreter.h"
|
||||||
|
@ -31,8 +34,4 @@ enum WL_e {
|
||||||
|
|
||||||
#pragma warning( pop ) //restore
|
#pragma warning( pop ) //restore
|
||||||
|
|
||||||
|
|
||||||
extern void *ICARUS_Malloc(int iSize);
|
|
||||||
extern void ICARUS_Free(void *pMem);
|
|
||||||
|
|
||||||
#endif //__ICARUS__
|
#endif //__ICARUS__
|
||||||
|
|
Loading…
Reference in a new issue