]> git.jsancho.org Git - lugaru.git/blobdiff - Source/MacCompatibility.cpp
Rename all C++ headers with .hpp extension
[lugaru.git] / Source / MacCompatibility.cpp
index 6e47632f0a0260b1ea5c66b54aaac00b7ed7f311..ac0e63cfdd664a5961d370347eacb4068c7c1b81 100644 (file)
@@ -18,12 +18,7 @@ You should have received a copy of the GNU General Public License
 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-/**> HEADER FILES <**/
-#include "MacCompatibility.h"
-
-#ifdef WIN32
-#include <windows.h>
-#endif
+#include "MacCompatibility.hpp"
 
 #include <errno.h>
 #include <time.h>
@@ -31,11 +26,16 @@ along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 #include <stdlib.h>
 #include <string.h>
 
+#ifdef WIN32
+#include <windows.h>
+#endif
+
 #if PLATFORM_UNIX
+#include <assert.h>
 #include <unistd.h>
-#include <sys/time.h>
 #include <sys/stat.h>
-#include <assert.h>
+#include <sys/time.h>
+
 typedef long long __int64;
 typedef __int64 LARGE_INTEGER;
 static int QueryPerformanceFrequency(LARGE_INTEGER *liptr)