aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/libc_compat
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2022-08-04 11:21:47 +0300
committerthegeorg <thegeorg@yandex-team.com>2022-08-04 11:21:47 +0300
commitcabc63393f59d3b32d4aa1a060043f4cb50763be (patch)
tree3e958cb070cc3b0180f28d2f8cc443e4c778bc7b /contrib/libs/libc_compat
parent7be82a9836184e110d7551a329383b89f9f6f19c (diff)
downloadydb-cabc63393f59d3b32d4aa1a060043f4cb50763be.tar.gz
Fix macro naming in libc_compat
These includes belong to ucrt (C runtime library, being a part of Windows SDK), not to MSVC compiler.
Diffstat (limited to 'contrib/libs/libc_compat')
-rw-r--r--contrib/libs/libc_compat/reallocarray/stdlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libs/libc_compat/reallocarray/stdlib.h b/contrib/libs/libc_compat/reallocarray/stdlib.h
index 4b27573a37..d237c8b6d6 100644
--- a/contrib/libs/libc_compat/reallocarray/stdlib.h
+++ b/contrib/libs/libc_compat/reallocarray/stdlib.h
@@ -4,9 +4,9 @@
#if defined(__GNUC__) || defined(__clang__)
#include_next <stdlib.h>
#else
- #define Y_MSVC_INCLUDE_NEXT(x) <Y_UCRT_INCLUDE/x>
- #include Y_MSVC_INCLUDE_NEXT(stdlib.h)
- #undef Y_MSVC_INCLUDE_NEXT
+ #define Y_UCRT_INCLUDE_NEXT(x) <Y_UCRT_INCLUDE/x>
+ #include Y_UCRT_INCLUDE_NEXT(stdlib.h)
+ #undef Y_UCRT_INCLUDE_NEXT
#endif
#ifdef __cplusplus