Files
2023-10-13 14:01:41 +00:00

14 lines
241 B
ArmAsm

/*
* Selected possible strncmp implementations.
*
* Copyright (c) 2019, Arm Limited.
* SPDX-License-Identifier: MIT
*/
#if __aarch64__
#include "aarch64/strncmp.S"
# if __ARM_FEATURE_SVE
#include "aarch64/strncmp-sve.S"
# endif
#endif