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))