Blame sysdeps/s390/strstr.c

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