diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2011-04-01 19:38:21 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-01 19:38:21 -0400 |
commit | 0354e355014b7bfda32622e0255399d859862fcd (patch) | |
tree | d2f823c407add9a82d7b6b3c055b78a9811914cb /sysdeps/x86_64/memmove.c | |
parent | 8593482f5ec33daa90fca63db380edc8283c39df (diff) | |
download | glibc-0354e355014b7bfda32622e0255399d859862fcd.tar glibc-0354e355014b7bfda32622e0255399d859862fcd.tar.gz glibc-0354e355014b7bfda32622e0255399d859862fcd.tar.bz2 glibc-0354e355014b7bfda32622e0255399d859862fcd.zip |
Work around old buggy program which cannot cope with memcpy semantics.
Diffstat (limited to 'sysdeps/x86_64/memmove.c')
-rw-r--r-- | sysdeps/x86_64/memmove.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sysdeps/x86_64/memmove.c b/sysdeps/x86_64/memmove.c new file mode 100644 index 0000000000..1a6f87dc8f --- /dev/null +++ b/sysdeps/x86_64/memmove.c @@ -0,0 +1,27 @@ +/* Copyright (C) 2011 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +#include "string/memmove.c" + +#if !defined memmove && !defined NOT_IN_libc +#include <shlib-compat.h> + +#if SHLIB_COMPAT (libc, GLIBC_2_2_5, GLIBC_2_14) +compat_symbol (libc, memmove, memcpy, GLIBC_2_2_5); +#endif +#endif |