1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +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 * char *
strcpy (char *dest, const char *src) 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) libc_hidden_builtin_def (strcpy)