diff options
author | unknown <serg@serg.mylan> | 2004-10-20 15:26:03 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-10-20 15:26:03 +0200 |
commit | 00bbd9a252553782627042b1a642233f5effc867 (patch) | |
tree | 16543d04931e284eba3fe1197ae779990df283f7 /include/decimal.h | |
parent | 6853eb45c8085480643af94734a042b9c4c5b939 (diff) | |
download | mariadb-git-00bbd9a252553782627042b1a642233f5effc867.tar.gz |
decimal_cmp()
Diffstat (limited to 'include/decimal.h')
-rw-r--r-- | include/decimal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/decimal.h b/include/decimal.h index 03e4a0b3725..fbe507f4049 100644 --- a/include/decimal.h +++ b/include/decimal.h @@ -45,6 +45,7 @@ int decimal_result_size(decimal *from1, decimal *from2, char op, int param); int decimal_add(decimal *from1, decimal *from2, decimal *to); int decimal_sub(decimal *from1, decimal *from2, decimal *to); +int decimal_cmp(decimal *from1, decimal *from2); int decimal_mul(decimal *from1, decimal *from2, decimal *to); int decimal_div(decimal *from1, decimal *from2, decimal *to, int scale_incr); int decimal_mod(decimal *from1, decimal *from2, decimal *to); |