Blame sysdeps/s390/ifunc-strnlen.h

Packit Service 0cadbc
/* strnlen variant information on S/390 version.
Packit Service 0cadbc
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service 0cadbc
   This file is part of the GNU C Library.
Packit Service 0cadbc
Packit Service 0cadbc
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 0cadbc
   modify it under the terms of the GNU Lesser General Public
Packit Service 0cadbc
   License as published by the Free Software Foundation; either
Packit Service 0cadbc
   version 2.1 of the License, or (at your option) any later version.
Packit Service 0cadbc
Packit Service 0cadbc
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 0cadbc
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 0cadbc
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 0cadbc
   Lesser General Public License for more details.
Packit Service 0cadbc
Packit Service 0cadbc
   You should have received a copy of the GNU Lesser General Public
Packit Service 0cadbc
   License along with the GNU C Library; if not, see
Packit Service 0cadbc
   <http://www.gnu.org/licenses/>.  */
Packit Service 0cadbc
Packit Service 0cadbc
#if defined USE_MULTIARCH && IS_IN (libc)		\
Packit Service 0cadbc
  && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Service 0cadbc
# define HAVE_STRNLEN_IFUNC	1
Packit Service 0cadbc
#else
Packit Service 0cadbc
# define HAVE_STRNLEN_IFUNC	0
Packit Service 0cadbc
#endif
Packit Service 0cadbc
Packit Service 0cadbc
#ifdef HAVE_S390_VX_ASM_SUPPORT
Packit Service 0cadbc
# define HAVE_STRNLEN_IFUNC_AND_VX_SUPPORT HAVE_STRNLEN_IFUNC
Packit Service 0cadbc
#else
Packit Service 0cadbc
# define HAVE_STRNLEN_IFUNC_AND_VX_SUPPORT 0
Packit Service 0cadbc
#endif
Packit Service 0cadbc
Packit Service 0cadbc
#if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Service 0cadbc
# define STRNLEN_DEFAULT	STRNLEN_Z13
Packit Service 0cadbc
# define HAVE_STRNLEN_C		0
Packit Service 0cadbc
# define HAVE_STRNLEN_Z13	1
Packit Service 0cadbc
#else
Packit Service 0cadbc
# define STRNLEN_DEFAULT	STRNLEN_C
Packit Service 0cadbc
# define HAVE_STRNLEN_C		1
Packit Service 0cadbc
# define HAVE_STRNLEN_Z13	HAVE_STRNLEN_IFUNC_AND_VX_SUPPORT
Packit Service 0cadbc
#endif
Packit Service 0cadbc
Packit Service 0cadbc
#if HAVE_STRNLEN_C
Packit Service 0cadbc
# define STRNLEN_C		__strnlen_c
Packit Service 0cadbc
#else
Packit Service 0cadbc
# define STRNLEN_C		NULL
Packit Service 0cadbc
#endif
Packit Service 0cadbc
Packit Service 0cadbc
#if HAVE_STRNLEN_Z13
Packit Service 0cadbc
# define STRNLEN_Z13		__strnlen_vx
Packit Service 0cadbc
#else
Packit Service 0cadbc
# define STRNLEN_Z13		NULL
Packit Service 0cadbc
#endif