diff options
Diffstat (limited to 'string/strcpy.c')
-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) |