mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 17:11:06 +00:00
224b419d1e
The functions strtoimax, strtoumax, wcstoimax, wcstoumax currently have three implementations each (wordsize-32, wordsize-64 and dummy implementation in stdlib/ using #error), defining the functions as thin wrappers round corresponding *_internal functions. Simplify the code by changing them into aliases of functions such as strtol and wcstoull. This is more consistent with how e.g. imaxdiv is handled. Tested for x86_64 and x86.
16 lines
451 B
C
16 lines
451 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)
|
|
weak_alias (strtoul, strtoumax)
|