aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore
diff options
context:
space:
mode:
authoraliaspider2017-03-02 10:37:59 +0100
committeraliaspider2017-03-02 10:37:59 +0100
commitf9fb1cf7e6287175bff3eba452f47a18e15030b2 (patch)
tree3b8c1b2ba91f60dfca1f9f17de8630ba7322d2f9 /libpcsxcore
parent9ae7e341101d8f840d0a98e168fe055e93668487 (diff)
downloadpcsx_rearmed-f9fb1cf7e6287175bff3eba452f47a18e15030b2.tar.gz
pcsx_rearmed-f9fb1cf7e6287175bff3eba452f47a18e15030b2.tar.bz2
pcsx_rearmed-f9fb1cf7e6287175bff3eba452f47a18e15030b2.zip
(WIN32) move #define statements after all #include statements.
Diffstat (limited to 'libpcsxcore')
-rw-r--r--libpcsxcore/cdriso.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c
index 7555ad2..169c945 100644
--- a/libpcsxcore/cdriso.c
+++ b/libpcsxcore/cdriso.c
@@ -25,6 +25,9 @@
#include "cdriso.h"
#include "ppf.h"
+#include <errno.h>
+#include <zlib.h>
+
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <process.h>
@@ -36,8 +39,6 @@
#include <sys/time.h>
#include <unistd.h>
#endif
-#include <errno.h>
-#include <zlib.h>
#define OFF_T_MSB ((off_t)1 << (sizeof(off_t) * 8 - 1))