Blame sysdeps/s390/memccpy-c.c

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