]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Be sure book file is closed before we leave
[stockfish] / src / misc.h
index a496d88eef9d51c69861ad0ba6c850f211dc8eb2..aff7cf3e1e0aca0703f95e3d8d5ec97b5f0d450e 100644 (file)
 #include <string>
 
 
-////
-//// Constants
-////
-
-
-/// Version number.  If this is left empty, the current date (in the format
-/// YYMMDD) is used as a version number.
-
-const std::string EngineVersion = "";
-
-
 ////
 //// Macros
 ////
 
 #define Min(x, y) (((x) < (y))? (x) : (y))
 #define Max(x, y) (((x) < (y))? (y) : (x))
-#define Abs(a) (((a) < 0) ? -(a) : (a))
 
 
 ////