diff options
author | Joseph Myers <joseph@codesourcery.com> | 2020-12-08 18:15:27 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2020-12-08 18:15:27 +0000 |
commit | 224b419d1e750e3e9ced5c57774bb2bdd5292e28 (patch) | |
tree | 270809a5e89155afa1990475bcff36a5d7ae6f24 /stdlib/wcstoumax.c | |
parent | 4d3a77c73594c3704992f8d5b779c8be053cff35 (diff) | |
download | glibc-224b419d1e750e3e9ced5c57774bb2bdd5292e28.zip glibc-224b419d1e750e3e9ced5c57774bb2bdd5292e28.tar.gz glibc-224b419d1e750e3e9ced5c57774bb2bdd5292e28.tar.bz2 |
Make strtoimax, strtoumax, wcstoimax, wcstoumax into aliases
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.
Diffstat (limited to 'stdlib/wcstoumax.c')
-rw-r--r-- | stdlib/wcstoumax.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/stdlib/wcstoumax.c b/stdlib/wcstoumax.c deleted file mode 100644 index 508cb19..0000000 --- a/stdlib/wcstoumax.c +++ /dev/null @@ -1 +0,0 @@ -#error "The correct implementation must be chosen based on the `uintmax_t' type" |