Merge "adb: add implementation of mempcpy for deficient platforms." am: d956dd78d0 am: 1264028fc7

Change-Id: I278f6cdca366c5c1c4189751dff2e86b3ef29558
This commit is contained in:
Josh Gao 2020-04-03 19:51:06 +00:00 committed by Automerger Merge Worker
commit 68e279641f

View file

@ -42,6 +42,12 @@
#include "sysdeps/network.h"
#include "sysdeps/stat.h"
#if defined(__APPLE__)
static void* mempcpy(void* dst, const void* src, size_t n) {
return static_cast<char*>(memcpy(dst, src, n)) + n;
}
#endif
#ifdef _WIN32
// Clang-only nullability specifiers