From 711ad7b3dc2cca313a2aeeed5037fd015e281fef Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 6 Sep 2004 22:25:43 +0000 Subject: [PATCH] endif bug --- amxmodx/amx.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/amxmodx/amx.cpp b/amxmodx/amx.cpp index df5f108f..15852489 100755 --- a/amxmodx/amx.cpp +++ b/amxmodx/amx.cpp @@ -480,13 +480,14 @@ int AMXAPI amx_Debug(AMX *amx) } #if defined JIT -#if defined WIN32 || __cplusplus +#if defined WIN32 || defined __cplusplus extern "C" int AMXAPI getMaxCodeSize(void); extern "C" int AMXAPI asm_runJIT(void *sourceAMXbase, void *jumparray, void *compiledAMXbase); #else extern int AMXAPI getMaxCodeSize(void); extern int AMXAPI asm_runJIT(void *sourceAMXbase, void *jumparray, void *compiledAMXbase); #endif +#endif #if SMALL_CELL_SIZE==16 #define JUMPABS(base,ip) ((cell *)(base+*ip))