diff --git a/amxmodx/file.cpp b/amxmodx/file.cpp index c48ee0dd..6f0143e6 100755 --- a/amxmodx/file.cpp +++ b/amxmodx/file.cpp @@ -35,17 +35,6 @@ #define _INTPTR_T_DEFINED #endif -#include -#include -#include "amxmodx.h" - -// header file for unlink() -#ifdef __linux__ -#include -#else -#include -#endif - #ifdef __GNUC__ //#include @@ -55,6 +44,18 @@ #endif +// header file for unlink() +#ifdef __linux__ +#include +#else +#include +#endif + +#include +#include +#include "amxmodx.h" + + static cell AMX_NATIVE_CALL read_dir(AMX *amx, cell *params) { #ifdef __GNUC__ @@ -532,3 +533,4 @@ AMX_NATIVE_INFO file_Natives[] = { { NULL, NULL } }; +