diff options
author | arcadia-devtools <[email protected]> | 2022-03-31 11:44:34 +0300 |
---|---|---|
committer | arcadia-devtools <[email protected]> | 2022-03-31 11:44:34 +0300 |
commit | 1d721d6ff6a0735a252861bf70e6560a1418557c (patch) | |
tree | f89b81b902d5e90a6905619842a2a36ba17455cf | |
parent | 6e3564f0fc6d9329f2f36fd10479488bc3876645 (diff) |
intermediate changes
ref:53e2cfe72d6c99645ce8c3ec722b316a382a509b
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/__support/musl/xlocale.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/__support/musl/xlocale.h b/contrib/libs/cxxsupp/libcxx/include/__support/musl/xlocale.h index e91701afd5c..2508a8e8e0c 100644 --- a/contrib/libs/cxxsupp/libcxx/include/__support/musl/xlocale.h +++ b/contrib/libs/cxxsupp/libcxx/include/__support/musl/xlocale.h @@ -24,6 +24,16 @@ extern "C" { #endif +static inline long long strtoll_l(const char *nptr, char **endptr, int base, + locale_t) { + return strtoll(nptr, endptr, base); +} + +static inline unsigned long long strtoull_l(const char *nptr, char **endptr, + int base, locale_t) { + return strtoull(nptr, endptr, base); +} + static inline long long wcstoll_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t) { return wcstoll(nptr, endptr, base); |