]> git.ipfire.org Git - thirdparty/glibc.git/blame - string/mempcpy.c
Use prototype definition for __strtol.
[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.
d4697bc9 4 Copyright (C) 1991-2014 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
PE
19 License along with the GNU C Library; if not, see
20 <http://www.gnu.org/licenses/>. */
9a0a462c
UD
21
22#include <string.h>
9a0a462c
UD
23
24#undef mempcpy
95e2a50e 25#undef __mempcpy
9a0a462c 26
87da8bdb
AZ
27#ifndef MEMPCPY
28# define MEMPCPY __mempcpy
29#endif
30
9a0a462c 31void *
87da8bdb 32MEMPCPY (void *dest, const void *src, size_t len)
9a0a462c 33{
170704c9 34 return memcpy (dest, src, len) + len;
9a0a462c 35}
37ba7d66 36libc_hidden_def (__mempcpy)
9a0a462c 37weak_alias (__mempcpy, mempcpy)
3dbfd811 38libc_hidden_builtin_def (mempcpy)