Blame sysdeps/s390/memccpy-c.c

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