Blame sysdeps/s390/strstr-c.c

Packit Service 883a56
/* Default strstr implementation for S/390.
Packit Service 883a56
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service 883a56
   This file is part of the GNU C Library.
Packit Service 883a56
Packit Service 883a56
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 883a56
   modify it under the terms of the GNU Lesser General Public
Packit Service 883a56
   License as published by the Free Software Foundation; either
Packit Service 883a56
   version 2.1 of the License, or (at your option) any later version.
Packit Service 883a56
Packit Service 883a56
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 883a56
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 883a56
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 883a56
   Lesser General Public License for more details.
Packit Service 883a56
Packit Service 883a56
   You should have received a copy of the GNU Lesser General Public
Packit Service 883a56
   License along with the GNU C Library; if not, see
Packit Service 883a56
   <http://www.gnu.org/licenses/>.  */
Packit Service 883a56
Packit Service 883a56
#include <ifunc-strstr.h>
Packit Service 883a56
Packit Service 883a56
#if HAVE_STRSTR_C
Packit Service 883a56
# if HAVE_STRSTR_IFUNC
Packit Service 883a56
#  define STRSTR STRSTR_C
Packit Service 883a56
#  if defined SHARED && IS_IN (libc)
Packit Service 883a56
#   undef libc_hidden_builtin_def
Packit Service 883a56
#   define libc_hidden_builtin_def(name)		\
Packit Service 883a56
  __hidden_ver1 (__strstr_c, __GI_strstr, __strstr_c);
Packit Service 883a56
#  endif
Packit Service 883a56
# endif
Packit Service 883a56
Packit Service 883a56
# include <string/strstr.c>
Packit Service 883a56
#endif