Blame sysdeps/s390/multiarch/wcscspn.c

Packit Service 8bbac7
/* Multiple versions of wcscspn.
Packit Service 8bbac7
   Copyright (C) 2015-2018 Free Software Foundation, Inc.
Packit Service e7925c
   This file is part of the GNU C Library.
Packit Service e7925c
Packit Service e7925c
   The GNU C Library is free software; you can redistribute it and/or
Packit Service e7925c
   modify it under the terms of the GNU Lesser General Public
Packit Service e7925c
   License as published by the Free Software Foundation; either
Packit Service e7925c
   version 2.1 of the License, or (at your option) any later version.
Packit Service e7925c
Packit Service e7925c
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service e7925c
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service e7925c
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service e7925c
   Lesser General Public License for more details.
Packit Service e7925c
Packit Service e7925c
   You should have received a copy of the GNU Lesser General Public
Packit Service e7925c
   License along with the GNU C Library; if not, see
Packit Service e7925c
   <http://www.gnu.org/licenses/>.  */
Packit Service e7925c
Packit Service 8bbac7
#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
Packit Service 8bbac7
# include <wchar.h>
Packit Service 8bbac7
# include <ifunc-resolve.h>
Packit Service e7925c
Packit Service 8bbac7
s390_vx_libc_ifunc2 (__wcscspn, wcscspn)
Packit Service 8bbac7
Packit Service 8bbac7
#else
Packit Service 8bbac7
# include <wcsmbs/wcscspn.c>
Packit Service 8bbac7
#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)) */