Blame sysdeps/s390/memrchr-c.c

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