summaryrefslogtreecommitdiffstats
path: root/libc/stdio/_uintmaxtostr.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-06 03:45:53 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-06 03:45:53 +0000
commit821e7539de6922c96e2a4fc5baa11fdc335072c9 (patch)
tree8ee7f5ac1797850d304a3b10ff4a7ca4d4f2a2dc /libc/stdio/_uintmaxtostr.c
parentbd7bace793536f027790396d6358c14299e8595b (diff)
downloaduClibc-alpine-821e7539de6922c96e2a4fc5baa11fdc335072c9.tar.bz2
uClibc-alpine-821e7539de6922c96e2a4fc5baa11fdc335072c9.tar.xz
More merging from trunk.
Diffstat (limited to 'libc/stdio/_uintmaxtostr.c')
-rw-r--r--libc/stdio/_uintmaxtostr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/stdio/_uintmaxtostr.c b/libc/stdio/_uintmaxtostr.c
index 847d23560..bf92506d5 100644
--- a/libc/stdio/_uintmaxtostr.c
+++ b/libc/stdio/_uintmaxtostr.c
@@ -17,7 +17,7 @@
#define INTERNAL_DIV_MOD
#endif
-char attribute_hidden *__libc__uintmaxtostr(register char * __restrict bufend, uintmax_t uval,
+char attribute_hidden *_uintmaxtostr(register char * __restrict bufend, uintmax_t uval,
int base, __UIM_CASE alphacase)
{
int negative;
@@ -149,4 +149,3 @@ char attribute_hidden *__libc__uintmaxtostr(register char * __restrict bufend, u
return bufend;
}
-strong_alias(__libc__uintmaxtostr,_uintmaxtostr)