Changeset 95802 in vbox
- Timestamp:
- Jul 25, 2022 12:27:26 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/nocrt-alloc-win.cpp
r93115 r95802 81 81 82 82 83 #undef RTMemAllocVarTag 84 RTDECL(void *) RTMemAllocVarTag(size_t cbUnaligned, const char *pszTag) 85 { 86 return RTMemAllocTag(cbUnaligned, pszTag); 87 } 88 89 90 #undef RTMemAllocZVarTag 91 RTDECL(void *) RTMemAllocZVarTag(size_t cbUnaligned, const char *pszTag) 92 { 93 return RTMemAllocZTag(cbUnaligned, pszTag); 94 } 95 96 83 97 #undef RTMemReallocTag 84 98 RTDECL(void *) RTMemReallocTag(void *pvOld, size_t cbNew, const char *pszTag)
Note:
See TracChangeset
for help on using the changeset viewer.