about summary refs log tree commit diff
path: root/sysdeps/wordsize-64/strtoul.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/wordsize-64/strtoul.c')
-rw-r--r--sysdeps/wordsize-64/strtoul.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/wordsize-64/strtoul.c b/sysdeps/wordsize-64/strtoul.c
index 838474f436..0e82c4c95f 100644
--- a/sysdeps/wordsize-64/strtoul.c
+++ b/sysdeps/wordsize-64/strtoul.c
@@ -1,10 +1,13 @@
 /* We have to irritate the compiler a bit.  */
 #define __strtoull_internal __strtoull_internal_XXX
 #define strtoull strtoull_XXX
+#define strtouq strtouq_XXX
 
 #include <sysdeps/generic/strtoul.c>
 
 #undef __strtoull_internal
 #undef strtoull
+#undef strtouq
 strong_alias (__strtoul_internal, __strtoull_internal)
-weak_alias (__strtoull_internal, strtoull)
+weak_alias (strtoul, strtoull)
+weak_alias (strtoul, strtouq)