15 lines
428 B
C
15 lines
428 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 <sysdeps/generic/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)
|