]> git.ipfire.org Git - thirdparty/glibc.git/blame - string/mempcpy.c
build-many-glibcs.py: Add openrisc hard float glibc variant
[thirdparty/glibc.git] / string / mempcpy.c
CommitLineData
9a0a462c
UD
1/* Copy memory to memory until the specified number of bytes
2 has been copied, return pointer to following byte.
3 Overlap is NOT handled correctly.
dff8da6b 4 Copyright (C) 1991-2024 Free Software Foundation, Inc.
9a0a462c
UD
5 This file is part of the GNU C Library.
6 Contributed by Torbjorn Granlund (tege@sics.se).
7
8 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
9a0a462c
UD
12
13 The GNU C Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 16 Lesser General Public License for more details.
9a0a462c 17
41bdb6e2 18 You should have received a copy of the GNU Lesser General Public
59ba27a6 19 License along with the GNU C Library; if not, see
5a82c748 20 <https://www.gnu.org/licenses/>. */
9a0a462c 21
c1b0aadc 22#define NO_MEMPCPY_STPCPY_REDIRECT
9a0a462c 23#include <string.h>
9a0a462c
UD
24
25#undef mempcpy
95e2a50e 26#undef __mempcpy
9a0a462c 27
87da8bdb
AZ
28#ifndef MEMPCPY
29# define MEMPCPY __mempcpy
30#endif
31
9a0a462c 32void *
87da8bdb 33MEMPCPY (void *dest, const void *src, size_t len)
9a0a462c 34{
170704c9 35 return memcpy (dest, src, len) + len;
9a0a462c 36}
37ba7d66 37libc_hidden_def (__mempcpy)
9a0a462c 38weak_alias (__mempcpy, mempcpy)
3dbfd811 39libc_hidden_builtin_def (mempcpy)