1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

arbitrary precision decimal numbers

strings/llstr.c:
  small optimization
BitKeeper/etc/ignore:
  Added strings/test_decimal to the ignore list
This commit is contained in:
unknown
2004-10-18 14:06:46 +02:00
parent 65ed693681
commit decc71e636
5 changed files with 1714 additions and 9 deletions

View File

@@ -30,6 +30,6 @@
char *llstr(longlong value,char *buff)
{
longlong2str(value,buff,-10);
longlong10_to_str(value,buff,-10);
return buff;
}