mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
15 lines
419 B
C
15 lines
419 B
C
/* We have to irritate the compiler a bit. */
|
|
#define __strtoull_internal __strtoull_internal_XXX
|
|
#define strtoull strtoull_XXX
|
|
#define strtouq strtouq_XXX
|
|
|
|
#include <stdlib/strtoul.c>
|
|
|
|
#undef __strtoull_internal
|
|
#undef strtoull
|
|
#undef strtouq
|
|
strong_alias (__strtoul_internal, __strtoull_internal)
|
|
libc_hidden_ver (__strtoul_internal, __strtoull_internal)
|
|
weak_alias (strtoul, strtoull)
|
|
weak_alias (strtoul, strtouq)
|