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