thou shall not use system headers for crossplatformness
authorkoda
Tue, 20 Nov 2012 18:51:42 +0100
changeset 8074 768427321cab
parent 8073 5a289ef40fdb
child 8075 0ccb218127c3
thou shall not use system headers for crossplatformness
misc/physfs/extras/hwpacksmounter.c
misc/physfs/extras/physfslualoader.c
--- a/misc/physfs/extras/hwpacksmounter.c	Tue Nov 20 18:33:09 2012 +0100
+++ b/misc/physfs/extras/hwpacksmounter.c	Tue Nov 20 18:51:42 2012 +0100
@@ -1,7 +1,7 @@
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <physfs.h>
+#include "physfs.h"
 
 #include "hwpacksmounter.h"
 
--- a/misc/physfs/extras/physfslualoader.c	Tue Nov 20 18:33:09 2012 +0100
+++ b/misc/physfs/extras/physfslualoader.c	Tue Nov 20 18:51:42 2012 +0100
@@ -1,5 +1,5 @@
-#include <lua.h>
-#include <physfs.h>
+#include "lua.h"
+#include "physfs.h"
 
 #define BUFSIZE 1024
 
@@ -26,4 +26,5 @@
 void physfsReaderSetBuffer(void *buffer)
 {
     physfsReaderBuffer = buffer;
-}
\ No newline at end of file
+}
+