aboutsummaryrefslogtreecommitdiff
path: root/string/memcpy.S
blob: c0f23e3e5bd2cae0d78766368ad5bd11a038cb37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Selected possible memcpy implementations.
 *
 * Copyright (c) 2019, Arm Limited.
 * SPDX-License-Identifier: MIT
 */

#if __aarch64__
#include "aarch64/memcpy.S"
#elif __arm__
#include "arm/memcpy.S"
#endif