Changeset 93958 in vbox
- Timestamp:
- Feb 27, 2022 1:46:29 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r93640 r93958 75 75 * IPRT instead of the operating environment. 76 76 */ 77 #if defined(RT_OS_DARWIN) && defined(KERNEL)77 #if defined(RT_OS_DARWIN) 78 78 RT_C_DECLS_BEGIN 79 # ifdef KERNEL 79 80 void *memchr(const void *pv, int ch, size_t cb); 80 81 char *strpbrk(const char *pszStr, const char *pszChars); 82 # endif 83 RTDECL(void *) mempcpy(void *pvDst, const void *pvSrc, size_t cb); 81 84 RT_C_DECLS_END 82 85 #endif -
trunk/src/VBox/Runtime/Makefile.kmk
r93650 r93958 1325 1325 r3/posix/tls-posix.cpp \ 1326 1326 r3/posix/utf8-posix.cpp 1327 RuntimeR3_SOURCES.darwin.x86 += common/string/memrchr.asm 1328 RuntimeR3_SOURCES.darwin.amd64 += common/string/memrchr.asm 1327 RuntimeR3_SOURCES.darwin.x86 += \ 1328 common/string/mempcpy.asm \ 1329 common/string/memrchr.asm 1330 RuntimeR3_SOURCES.darwin.amd64 += \ 1331 common/string/mempcpy.asm \ 1332 common/string/memrchr.asm 1329 1333 RuntimeR3_SOURCES.darwin.arm32 += \ 1334 common/string/mempcpy.cpp \ 1330 1335 common/string/memrchr.cpp \ 1331 1336 r3/darwin/RTMpGetDescription-generic.cpp 1332 1337 RuntimeR3_SOURCES.darwin.arm64 += \ 1338 common/string/mempcpy.cpp \ 1333 1339 common/string/memrchr.cpp \ 1334 1340 r3/darwin/RTMpGetDescription-generic.cpp
Note:
See TracChangeset
for help on using the changeset viewer.