diff --git a/string/aarch64/memcpy.S b/string/aarch64/memcpy.S index 8a967cdf4d2b5c014ce0737c19e4884297cd18b7..2b1a592feb39b5c831a908bda3f42bf3f9fc44ab 100644 --- a/string/aarch64/memcpy.S +++ b/string/aarch64/memcpy.S @@ -1,8 +1,8 @@ /* * memcpy - copy memory area * - * Copyright (c) 2012-2020, Arm Limited. - * SPDX-License-Identifier: MIT + * Copyright (c) 2012-2022, Arm Limited. + * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception */ /* Assumptions: @@ -11,7 +11,7 @@ * */ -#include "../asmdefs.h" +#include "asmdefs.h" #define dstin x0 #define src x1 diff --git a/string/arm/strcpy.c b/string/arm/strcpy.c index e7cee485e2a7e61b0db7b93ef5acbdaabec0a7d6..42ec776c5a8b075a4075370775600080676efd10 100644 --- a/string/arm/strcpy.c +++ b/string/arm/strcpy.c @@ -2,9 +2,11 @@ * strcpy * * Copyright (c) 2008-2020, Arm Limited. - * SPDX-License-Identifier: MIT + * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception */ + + /* For GLIBC: #include #include @@ -127,3 +129,5 @@ __strcpy_arm (char* dst, const char* src) "BX LR"); } /* For GLIBC: libc_hidden_builtin_def (strcpy) */ + +