From 8360d9734325347c04b7ba9d2f32a990af919366 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Mon, 22 Apr 2013 18:24:29 +1000 Subject: [PATCH] move decl of ICARUS_Malloc/ICARUS_Free for BlockStream.h --- code/icarus/icarus.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/icarus/icarus.h b/code/icarus/icarus.h index 40868b9..935bc3a 100644 --- a/code/icarus/icarus.h +++ b/code/icarus/icarus.h @@ -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__