changed include files order

This commit is contained in:
Pavol Marko 2004-05-05 18:43:47 +00:00
parent 1f31c6e309
commit 58cf8a1416

View File

@ -35,17 +35,6 @@
#define _INTPTR_T_DEFINED
#endif
#include <extdll.h>
#include <meta_api.h>
#include "amxmodx.h"
// header file for unlink()
#ifdef __linux__
#include <unistd.h>
#else
#include <io.h>
#endif
#ifdef __GNUC__
//#include <stddef.h>
@ -55,6 +44,18 @@
#endif
// header file for unlink()
#ifdef __linux__
#include <unistd.h>
#else
#include <io.h>
#endif
#include <extdll.h>
#include <meta_api.h>
#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 }
};