src/gnDefs.cpp

Go to the documentation of this file.
00001 #include "gn/gnDefs.h" 00002 00003 // gcc version 2 doesn't have abs() for 64 bit ints 00004 #if defined(__GNUG__) || defined(__INTEL_COMPILER) || defined(__APPLE__) 00005 #if( __GNUC__ <= 2 ) || defined(__INTEL_COMPILER) || defined(__APPLE__) 00006 00007 int64 abs( int64 a ){ 00008 return a < 0 ? -a : a; 00009 } 00010 00011 #endif 00012 #endif 00013

Generated on Mon Feb 14 19:28:19 2005 for libGenome by doxygen 1.3.8