Blame sysdeps/s390/strncat-c.c

Packit Service 9f65d3
/* Default strncat implementation for S/390.
Packit Service 9f65d3
   Copyright (C) 2015-2018 Free Software Foundation, Inc.
Packit Service 9f65d3
   This file is part of the GNU C Library.
Packit Service 9f65d3
Packit Service 9f65d3
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 9f65d3
   modify it under the terms of the GNU Lesser General Public
Packit Service 9f65d3
   License as published by the Free Software Foundation; either
Packit Service 9f65d3
   version 2.1 of the License, or (at your option) any later version.
Packit Service 9f65d3
Packit Service 9f65d3
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 9f65d3
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 9f65d3
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 9f65d3
   Lesser General Public License for more details.
Packit Service 9f65d3
Packit Service 9f65d3
   You should have received a copy of the GNU Lesser General Public
Packit Service 9f65d3
   License along with the GNU C Library; if not, see
Packit Service 9f65d3
   <http://www.gnu.org/licenses/>.  */
Packit Service 9f65d3
Packit Service c41a74
#include <ifunc-strncat.h>
Packit Service c41a74
Packit Service c41a74
#if HAVE_STRNCAT_C
Packit Service c41a74
# if HAVE_STRNCAT_IFUNC
Packit Service c41a74
#  define STRNCAT STRNCAT_C
Packit Service c41a74
#  define STRNCAT_PRIMARY
Packit Service c41a74
# endif
Packit Service 9f65d3
# include <string/strncat.c>
Packit Service 9f65d3
#endif