Blame sysdeps/s390/wcslen-c.c

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