1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

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)