Updated interpreters
[projects/chimara/chimara.git] / interpreters / git / config.h
index d1dea0af65cd6c7af9f6ce144484de5a1823063a..77df286a116c3f3b80906cd608bab0f95aa9426d 100644 (file)
 // Define this to memory-map the game file to speed up loading. (Unix-specific)
 // #define USE_MMAP
 
+// Define this to use an OS-specific git_powf() power math function. This
+// is useful if your compiler's powf() doesn't implement every special case
+// of the C99 standard.
+// #define USE_OWN_POWF
+
 // -------------------------------------------------------------------
 
 // Make sure we're compiling for a sane platform. For now, this means
@@ -76,4 +81,6 @@ typedef unsigned long git_uint32;
 #define GIT_INLINE static
 #endif
 
+typedef float git_float;
+
 #endif // GIT_CONFIG_H