]> Shamusworld >> Repos - virtualjaguar/commitdiff
Minor cleanup
authorShamus Hammons <jlhamm@acm.org>
Tue, 1 Jun 2004 19:21:06 +0000 (19:21 +0000)
committerShamus Hammons <jlhamm@acm.org>
Tue, 1 Jun 2004 19:21:06 +0000 (19:21 +0000)
src/cdintf.cpp

index 4f8924f38bb46d179bc5e0bfc3d957df7cff7413..ded601cb5df421e08fd037ccd509a803ccc7a251 100644 (file)
@@ -9,33 +9,20 @@
 
 #include "cdintf.h"                                                                    // Every OS has to implement these
 
-/*#ifdef __GCCWIN32__
-#include "cdintf_win32.cpp"
-#endif
-
-#ifdef __GCCUNIX__
-#ifdef _OSX_
-
-#include "cdintf_osx.cpp"
-
-#else
-#include "cdintf_linux.cpp"
-
-#endif
-#endif//*/
+// OS dependent implementations
 
 #if defined(__GCCWIN32__)
 
 #include "cdintf_win32.cpp"
 
 #elif defined(__GCCUNIX__)
-#if defined(_OSX_)
+       #if defined(_OSX_)
 
 #include "cdintf_osx.cpp"
 
-#else
+       #else
 
 #include "cdintf_linux.cpp"
 
-#endif
+       #endif
 #endif