]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/x86_64/strcat.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / x86_64 / strcat.S
index 535a18dd3f82cf8c0cc499a07e697f1a9df20084..eca68e3398fa3ea4d2187819aeaba3f3e5463abf 100644 (file)
@@ -1,6 +1,6 @@
 /* strcat(dest, src) -- Append SRC on the end of DEST.
    Optimized for x86-64.
-   Copyright (C) 2002 Free Software Foundation, Inc.
+   Copyright (C) 2002-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@suse.de>, 2002.
 
 
 #include <sysdep.h>
 #include "asm-syntax.h"
-#include "bp-sym.h"
-#include "bp-asm.h"
 
+/* Will be removed when new strcpy implementation gets merged.  */
 
        .text
-ENTRY (BP_SYM (strcat))
+ENTRY (strcat)
        movq %rdi, %rcx         /* Dest. register. */
        andl $7, %ecx           /* mask alignment bits */
        movq %rdi, %rax         /* Duplicate destination pointer.  */
@@ -255,5 +254,5 @@ ENTRY (BP_SYM (strcat))
 24:
        movq    %rdi, %rax      /* Source is return value.  */
        retq
-END (BP_SYM (strcat))
+END (strcat)
 libc_hidden_builtin_def (strcat)