/** * logmath.c * Variables for logging math. Whee! */ // +---------+------------------------------------------------------- // | Headers | // +---------+ #include "logmath.h" // +--------------------+-------------------------------------------- // | Exported Variables | // +--------------------+ #ifdef LOGMATH long _MULTIPLICATIONS = 0; long _DIVISIONS = 0; long _MODS = 0; #endif