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

Brad Smith via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Jul 8 17:26:12 PDT 2022


brad created this revision.
brad added reviewers: ldionne, Mordante, libc++.
brad added a project: libc++.
Herald added a subscriber: krytarowski.
Herald added a project: All.
brad requested review of this revision.
Herald added 1 blocking reviewer(s): libc++.

Uglify __support/openbsd


Repository:
  rG LLVM Github Monorepo

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.443397.patch
Type: text/x-patch
Size: 775 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220709/c926ab0b/attachment.bin>


More information about the libcxx-commits mailing list