diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2002-06-29 01:43:10 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2002-06-29 01:43:10 +0000 |
commit | 3576ada073433c365307cfbc63ea51b8e635f8cb (patch) | |
tree | 52775b4fbe09ebb69ee9dcefedfd4f339ac8cd5c /contrib/gdb/libiberty/memmove.c | |
parent | 84b39cc0d1b28a5e64be1136fc2f597632436a20 (diff) |
Notes
Diffstat (limited to 'contrib/gdb/libiberty/memmove.c')
-rw-r--r-- | contrib/gdb/libiberty/memmove.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/gdb/libiberty/memmove.c b/contrib/gdb/libiberty/memmove.c deleted file mode 100644 index 818fc2496622..000000000000 --- a/contrib/gdb/libiberty/memmove.c +++ /dev/null @@ -1,18 +0,0 @@ -/* Wrapper to implement ANSI C's memmove using BSD's bcopy. */ -/* This function is in the public domain. --Per Bothner. */ -#include <ansidecl.h> -#ifdef __STDC__ -#include <stddef.h> -#else -#define size_t unsigned long -#endif - -PTR -memmove (s1, s2, n) - PTR s1; - CONST PTR s2; - size_t n; -{ - bcopy (s2, s1, n); - return s1; -} |