summaryrefslogtreecommitdiff
path: root/support/memmove.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-10-02 19:20:02 +0000
committernobody <nobody@localhost>2001-10-02 19:20:02 +0000
commitef782710a42e024d8eb65f38a323cda02ebe8769 (patch)
tree8f5f9b7cbb8614876e1daeaccef93d7ded95ca3f /support/memmove.c
parent7842363032dd621ce3485a0059da7ddab20d36da (diff)
downloadshared-mime-info-gnome-2-x-branch.tar.gz
This commit was manufactured by cvs2svn to create branchgnome-2-x-branch
'gnome-2-x-branch'. svn path=/branches/gnome-2-x-branch/; revision=2050
Diffstat (limited to 'support/memmove.c')
-rw-r--r--support/memmove.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/support/memmove.c b/support/memmove.c
deleted file mode 100644
index 96e257ed..00000000
--- a/support/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. */
-
-#ifdef __STDC__
-#include <stddef.h>
-#else
-#define size_t unsigned long
-#endif
-
-void *
-memmove (s1, s2, n)
- void *s1;
- const void *s2;
- size_t n;
-{
- bcopy (s2, s1, n);
- return s1;
-}