Blame sysdeps/s390/strncat-c.c

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