From 58cf8a1416b7bc345e66738dee468a13f6fa0ed0 Mon Sep 17 00:00:00 2001 From: Pavol Marko Date: Wed, 5 May 2004 18:43:47 +0000 Subject: [PATCH] changed include files order --- amxmodx/file.cpp | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) 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 } }; +