Fix typo.

This commit is contained in:
Wilco Dijkstra 2014-11-24 20:38:01 +00:00
parent cc0d3b1a7f
commit 6933c27e9c

View File

@ -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)