/* * Copyright (C) 2014 Apple Inc. All rights reserved. * * This document is the property of Apple Computer, Inc. * It is considered confidential and proprietary. * * This document may not be reproduced or transmitted in any form, * in whole or in part, without the express written permission of * Apple Computer, Inc. */ #include #include #include #include #if defined(memmove) #undef memmove #endif void * __memmove_chk(void *dst, void const *src, size_t s, size_t chk_size) { if (unlikely(chk_size < s)) panic("object size check failed (%zu < %zu)", s, chk_size); return memmove(dst, src, s); }