[libcxx-commits] [libcxx] 8e19a2b - [libcxx] Uglify __support/musl

Brad Smith via libcxx-commits libcxx-commits at lists.llvm.org
Sat Jul 9 15:02:05 PDT 2022


Author: Brad Smith
Date: 2022-07-09T18:01:21-04:00
New Revision: 8e19a2b43573c0245c8925d38140d76051dfbed0

URL: https://github.com/llvm/llvm-project/commit/8e19a2b43573c0245c8925d38140d76051dfbed0
DIFF: https://github.com/llvm/llvm-project/commit/8e19a2b43573c0245c8925d38140d76051dfbed0.diff

LOG: [libcxx] Uglify __support/musl

Uglify __support/musl

Reviewed By: philnik

Differential Revision: https://reviews.llvm.org/D129429

Added: 
    

Modified: 
    libcxx/include/__support/musl/xlocale.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__support/musl/xlocale.h b/libcxx/include/__support/musl/xlocale.h
index f85cd1cbf2fe9..f564c87885ac1 100644
--- a/libcxx/include/__support/musl/xlocale.h
+++ b/libcxx/include/__support/musl/xlocale.h
@@ -25,28 +25,28 @@ extern "C" {
 #endif
 
 inline _LIBCPP_HIDE_FROM_ABI long long
-strtoll_l(const char *nptr, char **endptr, int base, locale_t) {
-  return ::strtoll(nptr, endptr, base);
+strtoll_l(const char *__nptr, char **__endptr, int __base, locale_t) {
+  return ::strtoll(__nptr, __endptr, __base);
 }
 
 inline _LIBCPP_HIDE_FROM_ABI unsigned long long
-strtoull_l(const char *nptr, char **endptr, int base, locale_t) {
-  return ::strtoull(nptr, endptr, base);
+strtoull_l(const char *__nptr, char **__endptr, int __base, locale_t) {
+  return ::strtoull(__nptr, __endptr, __base);
 }
 
 inline _LIBCPP_HIDE_FROM_ABI long long
-wcstoll_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t) {
-  return ::wcstoll(nptr, endptr, base);
+wcstoll_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) {
+  return ::wcstoll(__nptr, __endptr, __base);
 }
 
 inline _LIBCPP_HIDE_FROM_ABI long long
-wcstoull_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t) {
-  return ::wcstoull(nptr, endptr, base);
+wcstoull_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) {
+  return ::wcstoull(__nptr, __endptr, __base);
 }
 
 inline _LIBCPP_HIDE_FROM_ABI long double
-wcstold_l(const wchar_t *nptr, wchar_t **endptr, locale_t) {
-  return ::wcstold(nptr, endptr);
+wcstold_l(const wchar_t *__nptr, wchar_t **__endptr, locale_t) {
+  return ::wcstold(__nptr, __endptr);
 }
 
 #ifdef __cplusplus


        


More information about the libcxx-commits mailing list