diff options
author | hf@deer.(none) <> | 2005-02-09 02:50:45 +0400 |
---|---|---|
committer | hf@deer.(none) <> | 2005-02-09 02:50:45 +0400 |
commit | b94a482ee9fdc45b64eb001a908f52784dfabcc1 (patch) | |
tree | 9631c72d46b0fd08479ad02de00e5846cd339cda /client/mysqlbinlog.cc | |
parent | 6e6daf818943e34d72017f64e496d6d94c90134f (diff) | |
download | mariadb-git-b94a482ee9fdc45b64eb001a908f52784dfabcc1.tar.gz |
Precision Math implementation
Diffstat (limited to 'client/mysqlbinlog.cc')
-rw-r--r-- | client/mysqlbinlog.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/mysqlbinlog.cc b/client/mysqlbinlog.cc index 0afd4074284..dc1c1e6fc02 100644 --- a/client/mysqlbinlog.cc +++ b/client/mysqlbinlog.cc @@ -1280,8 +1280,14 @@ int main(int argc, char** argv) */ #ifdef __WIN__ +#include "my_decimal.h" +#include "decimal.c" +#include "my_decimal.cpp" #include "log_event.cpp" #else +#include "my_decimal.h" +#include "decimal.c" +#include "my_decimal.cc" #include "log_event.cc" #endif |