diff options
author | tnurnberg@white.intern.koehntopp.de <> | 2007-12-01 15:53:56 +0100 |
---|---|---|
committer | tnurnberg@white.intern.koehntopp.de <> | 2007-12-01 15:53:56 +0100 |
commit | 9598ea4f45d2dfd7282111b35ca261f788d6ae72 (patch) | |
tree | 84d18e52bd97b323fa4ba6bb3915a25c2239ab6f /strings | |
parent | 69ed192e7277556f4e2ca487967322be7fe7edf7 (diff) | |
parent | 31d4e58ad4c26fea1367ddb00ea0c26a17d3ddfc (diff) | |
download | mariadb-git-9598ea4f45d2dfd7282111b35ca261f788d6ae72.tar.gz |
Merge mysql.com:/misc/mysql/31177/50-31177
into mysql.com:/misc/mysql/31177/51-31177
Diffstat (limited to 'strings')
-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; +} |