Merge "Remove strtoq() and strtouq()."

This commit is contained in:
Elliott Hughes 2022-11-10 19:42:02 +00:00 committed by Gerrit Code Review
commit ebe850e01c
2 changed files with 0 additions and 8 deletions

View file

@ -208,9 +208,6 @@ long long wcstoll(const wchar_t* s, wchar_t** end, int base) {
return StrToI<long long, LLONG_MIN, LLONG_MAX, wchar_t>(s, end, base);
}
// Public API since L, but not in any header.
__strong_alias(strtoq, strtoll);
unsigned long strtoul(const char* s, char** end, int base) {
return StrToU<unsigned long, ULONG_MAX, char>(s, end, base);
}
@ -234,6 +231,3 @@ uintmax_t strtoumax(const char* s, char** end, int base) {
uintmax_t wcstoumax(const wchar_t* s, wchar_t** end, int base) {
return StrToU<uintmax_t, UINTMAX_MAX, wchar_t>(s, end, base);
}
// Public API since L, but not in any header.
__strong_alias(strtouq, strtoull);

View file

@ -1037,12 +1037,10 @@ LIBC {
strtold_l; # introduced=21
strtoll;
strtoll_l; # introduced=21
strtoq; # introduced=21
strtoul;
strtoull;
strtoull_l; # introduced=21
strtoumax;
strtouq; # introduced=21
strxfrm;
strxfrm_l; # introduced=21
swapoff; # introduced-arm=19 introduced-arm64=21 introduced-x86=19 introduced-x86_64=21