Index: CrashLogger.cpp
===================================================================
--- CrashLogger.cpp	(revision 17f28a1bb89a812d2cd7066a709e7ac1a3885616)
+++ CrashLogger.cpp	(revision 9d4456b979eb6e6357d2e61f498ab7921be98c58)
@@ -5,5 +5,4 @@
 #include <csignal>
 #include <cstring>
-#include <cstdint> // Check if this lets me remove any windows includes
 
 #include <fcntl.h>
@@ -15,4 +14,8 @@
 
 #ifdef WINDOWS
+   // Check if this is necessary or lets me remove any windows includes
+   // also check if it's needed in Linux
+   #include <cstdint>
+
    #include <windows.h>
    #include <io.h>
@@ -33,7 +36,9 @@
    #include <unistd.h>
    #include <execinfo.h>
-   #include <errno.h>
    #include <cxxabi.h>
-   #include <cstring>
+
+   // CHeck if these are needed in Linux
+   //#include <errno.h>
+   //#include <cstring>
 
    void abortHandler(int signum);
