[libcxx-commits] [PATCH] D129412: [libcxx] Uglify __support/openbsd

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


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG865737581a9a: [libcxx] Uglify __support/openbsd (authored by brad).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D129412/new/

https://reviews.llvm.org/D129412

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


Index: libcxx/include/__support/openbsd/xlocale.h
===================================================================
--- libcxx/include/__support/openbsd/xlocale.h
+++ libcxx/include/__support/openbsd/xlocale.h
@@ -22,13 +22,13 @@
 
 
 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);
 }
 
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D129412.443405.patch
Type: text/x-patch
Size: 775 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220709/744b10ae/attachment.bin>


More information about the libcxx-commits mailing list