Blame sysdeps/s390/strstr.c

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