]> git.jsancho.org Git - lugaru.git/blobdiff - Source/MacCompatibility.cpp
Removed forgotten debug output
[lugaru.git] / Source / MacCompatibility.cpp
index 6e47632f0a0260b1ea5c66b54aaac00b7ed7f311..65a4c5ff78de9fc0c740cae66b4a0581e10e78e9 100644 (file)
@@ -18,24 +18,24 @@ 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"
+#include "MacCompatibility.hpp"
+
+#include <cerrno>
+#include <ctime>
+#include <cstdio>
+#include <cstdlib>
+#include <cstring>
 
 #ifdef WIN32
 #include <windows.h>
 #endif
 
-#include <errno.h>
-#include <time.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
 #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)