[libcxx-commits] [libcxx] 8657375 - [libcxx] Uglify __support/openbsd

Brad Smith via libcxx-commits libcxx-commits at lists.llvm.org
Fri Jul 8 18:37:33 PDT 2022


Author: Brad Smith
Date: 2022-07-08T21:37:00-04:00
New Revision: 865737581a9a8f062237bf0c210289cd05e8a092

URL: https://github.com/llvm/llvm-project/commit/865737581a9a8f062237bf0c210289cd05e8a092
DIFF: https://github.com/llvm/llvm-project/commit/865737581a9a8f062237bf0c210289cd05e8a092.diff

LOG: [libcxx] Uglify __support/openbsd

Uglify __support/openbsd

Reviewed By: philnik

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

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__support/openbsd/xlocale.h b/libcxx/include/__support/openbsd/xlocale.h
index f3917f333fb3..2be8dc7a0085 100644
--- a/libcxx/include/__support/openbsd/xlocale.h
+++ b/libcxx/include/__support/openbsd/xlocale.h
@@ -22,13 +22,13 @@ extern "C" {
 
 
 inline _LIBCPP_HIDE_FROM_ABI long
-strtol_l(const char *nptr, char **endptr, int base, locale_t) {
-  return ::strtol(nptr, endptr, base);
+strtol_l(const char *__nptr, char **__endptr, int __base, locale_t) {
+  return ::strtol(__nptr, __endptr, __base);
 }
 
 inline _LIBCPP_HIDE_FROM_ABI unsigned long
-strtoul_l(const char *nptr, char **endptr, int base, locale_t) {
-  return ::strtoul(nptr, endptr, base);
+strtoul_l(const char *__nptr, char **__endptr, int __base, locale_t) {
+  return ::strtoul(__nptr, __endptr, __base);
 }
 
 


        


More information about the libcxx-commits mailing list