X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/fe8ab488e9161c46dd9885d58fc52996dc0249ff..2dced7af2b695f87fe26496a3e73c219b7880cbc:/osfmk/corecrypto/ccn/src/ccn_set.c diff --git a/osfmk/corecrypto/ccn/src/ccn_set.c b/osfmk/corecrypto/ccn/src/ccn_set.c index bd95a27a7..26cdab52a 100644 --- a/osfmk/corecrypto/ccn/src/ccn_set.c +++ b/osfmk/corecrypto/ccn/src/ccn_set.c @@ -1,16 +1,19 @@ -// -// ccn_set.c -// corecrypto -// -// Created by Fabrice Gautier on 2/17/12. -// Copyright (c) 2012 Apple, Inc. All rights reserved. -// +/* + * ccn_set.c + * corecrypto + * + * Created on 02/17/2012 + * + * Copyright (c) 2012,2014,2015 Apple Inc. All rights reserved. + * + */ #include +#include #if !CCN_SET_ASM void ccn_set(cc_size n, cc_unit *r, const cc_unit *s) { - CC_MEMCPY(r, s, ccn_sizeof_n(n)); + CC_MEMMOVE(r, s, ccn_sizeof_n(n)); } #endif