Blame sysdeps/s390/memrchr-c.c

Packit Service 541783
/* Default memrchr implementation for S/390.
Packit Service 541783
   Copyright (C) 2015-2018 Free Software Foundation, Inc.
Packit Service 358832
   This file is part of the GNU C Library.
Packit Service 358832
Packit Service 358832
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 358832
   modify it under the terms of the GNU Lesser General Public
Packit Service 358832
   License as published by the Free Software Foundation; either
Packit Service 358832
   version 2.1 of the License, or (at your option) any later version.
Packit Service 358832
Packit Service 358832
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 358832
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 358832
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 358832
   Lesser General Public License for more details.
Packit Service 358832
Packit Service 358832
   You should have received a copy of the GNU Lesser General Public
Packit Service 358832
   License along with the GNU C Library; if not, see
Packit Service 541783
   <http://www.gnu.org/licenses/>.  */
Packit Service 358832
Packit Service dfcba2
#include <ifunc-memrchr.h>
Packit Service dfcba2
Packit Service dfcba2
#if HAVE_MEMRCHR_C
Packit Service dfcba2
# if HAVE_MEMRCHR_IFUNC
Packit Service dfcba2
#  define MEMRCHR MEMRCHR_C
Packit Service dfcba2
# endif
Packit Service 358832
Packit Service 541783
# include <string/memrchr.c>
Packit Service 358832
#endif