diff options
author | unknown <tnurnberg@white.intern.koehntopp.de> | 2007-12-02 01:48:43 +0100 |
---|---|---|
committer | unknown <tnurnberg@white.intern.koehntopp.de> | 2007-12-02 01:48:43 +0100 |
commit | 6a72267d05ba24953345b9fe516d6bff2f77e8eb (patch) | |
tree | 2cc4962b85af835d461cb0c5c5759ff69ea5b687 /strings/llstr.c | |
parent | e26804399bf57d20f9bd37aebd143ca225daf3f0 (diff) | |
parent | 89a208850a714d5653207cffa2d654e86063a7e7 (diff) | |
download | mariadb-git-6a72267d05ba24953345b9fe516d6bff2f77e8eb.tar.gz |
Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into mysql.com:/misc/mysql/31177/50-31177
client/mysql.cc:
Auto merged
mysql-test/r/subselect.result:
Auto merged
mysql-test/r/type_bit.result:
Auto merged
mysql-test/t/variables.test:
Auto merged
sql/mysqld.cc:
Auto merged
Diffstat (limited to 'strings/llstr.c')
-rw-r--r-- | strings/llstr.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/strings/llstr.c b/strings/llstr.c index 12aea63e014..643cf36a311 100644 --- a/strings/llstr.c +++ b/strings/llstr.c @@ -32,3 +32,9 @@ char *llstr(longlong value,char *buff) longlong10_to_str(value,buff,-10); return buff; } + +char *ullstr(longlong value,char *buff) +{ + longlong10_to_str(value,buff,10); + return buff; +} |