summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorgluh@eagle.(none) <>2007-12-13 14:52:49 +0400
committergluh@eagle.(none) <>2007-12-13 14:52:49 +0400
commite03959502978f9a7056b4adf6ba7c2a25f648b14 (patch)
treeb870e5e7b713672711344eb2e5b585f3e2c48375 /strings
parent9217f011361bf7c09f05692c409f52d553ce9690 (diff)
parent9f4f6acc53d1f9472def4a6f3fa650f6e72b1d6a (diff)
downloadmariadb-git-e03959502978f9a7056b4adf6ba7c2a25f648b14.tar.gz
Merge mysql.com:/home/gluh/MySQL/Merge/5.0
into mysql.com:/home/gluh/MySQL/Merge/5.0-opt
Diffstat (limited to 'strings')
-rw-r--r--strings/llstr.c6
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;
+}