Blame sysdeps/s390/wcsnlen-c.c

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