move decl of ICARUS_Malloc/ICARUS_Free for BlockStream.h

This commit is contained in:
Jonathan Gray 2013-04-22 18:24:29 +10:00
parent 841850ecec
commit 8360d97343
1 changed files with 3 additions and 4 deletions

View File

@ -22,6 +22,9 @@ enum WL_e {
#define STL_ITERATE( a, b ) for ( a = b.begin(); a != b.end(); a++ )
#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 "BlockStream.h"
#include "Interpreter.h"
@ -31,8 +34,4 @@ enum WL_e {
#pragma warning( pop ) //restore
extern void *ICARUS_Malloc(int iSize);
extern void ICARUS_Free(void *pMem);
#endif //__ICARUS__