Blame sysdeps/s390/strstr.c

Packit Service f5eb74
/* Multiple versions of strstr.
Packit Service f5eb74
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service f5eb74
   This file is part of the GNU C Library.
Packit Service f5eb74
Packit Service f5eb74
   The GNU C Library is free software; you can redistribute it and/or
Packit Service f5eb74
   modify it under the terms of the GNU Lesser General Public
Packit Service f5eb74
   License as published by the Free Software Foundation; either
Packit Service f5eb74
   version 2.1 of the License, or (at your option) any later version.
Packit Service f5eb74
Packit Service f5eb74
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service f5eb74
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service f5eb74
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service f5eb74
   Lesser General Public License for more details.
Packit Service f5eb74
Packit Service f5eb74
   You should have received a copy of the GNU Lesser General Public
Packit Service f5eb74
   License along with the GNU C Library; if not, see
Packit Service f5eb74
   <http://www.gnu.org/licenses/>.  */
Packit Service f5eb74
Packit Service f5eb74
#include <ifunc-strstr.h>
Packit Service f5eb74
Packit Service f5eb74
#if HAVE_STRSTR_IFUNC
Packit Service f5eb74
# define strstr __redirect_strstr
Packit Service f5eb74
# include <string.h>
Packit Service f5eb74
# include <ifunc-resolve.h>
Packit Service f5eb74
# undef strstr
Packit Service f5eb74
Packit Service f5eb74
# if HAVE_STRSTR_C
Packit Service f5eb74
extern __typeof (__redirect_strstr) STRSTR_C attribute_hidden;
Packit Service f5eb74
# endif
Packit Service f5eb74
Packit Service f5eb74
# if HAVE_STRSTR_Z13
Packit Service f5eb74
extern __typeof (__redirect_strstr) STRSTR_Z13 attribute_hidden;
Packit Service f5eb74
# endif
Packit Service f5eb74
Packit Service f5eb74
s390_libc_ifunc_expr (__redirect_strstr, strstr,
Packit Service f5eb74
		      (HAVE_STRSTR_Z13 && (hwcap & HWCAP_S390_VX))
Packit Service f5eb74
		      ? STRSTR_Z13
Packit Service f5eb74
		      : STRSTR_DEFAULT
Packit Service f5eb74
		      )
Packit Service f5eb74
#endif