]> git.jsancho.org Git - lugaru.git/blobdiff - Source/MacCompatibility.h
Remove some extra declarations of "channels"
[lugaru.git] / Source / MacCompatibility.h
index 3a99c52a052925f9dfc90c7036950365f5aca3ee..e9b2905f714219e2b6d98ac65311450913a442a6 100644 (file)
@@ -111,27 +111,7 @@ inline bool isnormal( double x)
 char* ConvertFileName( const char* orgfilename, const char *mode = "rb" );
 
 #define fopen( a, b) fopen(ConvertFileName(a, b), b)
-/*
-inline float abs( float f)
-{
-if (f < 0)
-return -f;
-return f;
-}
 
-inline double abs( double f)
-{
-if (f < 0)
-return -f;
-return f;
-}
-*/
-__forceinline long long longlongabs( long long f)
-{
-       if (f < 0)
-               return -f;
-       return f;
-}
 #endif
 #endif