Blame sysdeps/s390/wcscat-c.c

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