diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2014-11-24 20:38:01 +0000 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2014-11-24 20:39:38 +0000 |
commit | 6933c27e9c280f5b3d64227d756243d993eba727 (patch) | |
tree | 18d95d0a7c23a78d1a35fa0a453585d408b1adfb /string | |
parent | cc0d3b1a7f78fe05cec0451d792711ed81446519 (diff) | |
download | glibc-6933c27e9c280f5b3d64227d756243d993eba727.tar.gz glibc-6933c27e9c280f5b3d64227d756243d993eba727.tar.xz glibc-6933c27e9c280f5b3d64227d756243d993eba727.zip |
Fix typo.
Diffstat (limited to 'string')
-rw-r--r-- | string/strcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strcpy.c b/string/strcpy.c index 91f9cc640e..94ca1df1e7 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) |