build break in strcpy.c

Petar Jovanovic petar.jovanovic@rt-rk.com
Mon Nov 24 19:46:00 GMT 2014


➢ commit b863d2bc4db728213e54ff502d2c3ae5dfa0db25
➢ Author: Wilco Dijkstra <wdijkstr@arm.com>
➢ Date:   Mon Nov 24 15:09:07 2014 +0000
➢ 
➢     Improve strcpy performance.

Can you actually build the code after this change?

You may want to follow up with:

diff --git a/string/strcpy.c b/string/strcpy.c
index 91f9cc6..94ca1df 100644
--- a/string/strcpy.c
+++ b/string/strcpy.c
@@ -24,6 +24,6 @@
 char *
 strcpy (char *dest, const char *src)
 {
-  return memcpy (dest, src, strlen (src) + 1));
+  return memcpy (dest, src, strlen (src) + 1);
 }
 libc_hidden_builtin_def (strcpy)

Regards,
Petar



More information about the Libc-alpha mailing list