]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - string/strcat.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / string / strcat.c
index 6e1f1ab932ef07ef91bf5c6b8847b41b92573147..f229e4d83144878b5149cc5fd70cf49be5c63039 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 
 #undef strcat
 
+#ifndef STRCAT
+# define STRCAT strcat
+#endif
+
 /* Append SRC on the end of DEST.  */
 char *
-strcat (char *dest, const char *src)
+STRCAT (char *dest, const char *src)
 {
   strcpy (dest + strlen (dest), src);
   return dest;