From 49ba09d97cea9f90e792afe3a3db6694fd2f5a7a Mon Sep 17 00:00:00 2001 From: arvinzzz Date: Tue, 23 Nov 2021 15:42:55 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20ef89ab9=20from=20https://gitee.com/arvi?= =?UTF-8?q?nzzz/third=5Fparty=5Foptimized=5Froutines/pulls/8=20fix:=20?= =?UTF-8?q?=E5=86=85=E6=A0=B8strcpy=E5=87=BD=E6=95=B0=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E6=9C=AA=E7=94=9F=E6=95=88=20close:=20#I4JG76=20Signed-off-by:?= =?UTF-8?q?=20arvinzzz=20=20Change-Id:=20I70daf966?= =?UTF-8?q?bc3a536df21e8351456161beaf06b159?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6e4a37cea318640b9835437f3f1da14eae1b2f9a --- string/arm/strcpy.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/string/arm/strcpy.c b/string/arm/strcpy.c index 02cf94f..e7cee48 100644 --- a/string/arm/strcpy.c +++ b/string/arm/strcpy.c @@ -5,8 +5,6 @@ * SPDX-License-Identifier: MIT */ -#if defined (__thumb2__) && !defined (__thumb__) - /* For GLIBC: #include #include @@ -129,5 +127,3 @@ __strcpy_arm (char* dst, const char* src) "BX LR"); } /* For GLIBC: libc_hidden_builtin_def (strcpy) */ - -#endif /* defined (__thumb2__) && !defined (__thumb__) */ -- Gitee