summaryrefslogtreecommitdiff
path: root/support/memmove.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2003-12-09 01:57:09 +0000
committernobody <nobody@localhost>2003-12-09 01:57:09 +0000
commit100071f3d99599b675a6e844d715d28905a79e79 (patch)
tree75bb0caf9afd4b94842023406d6a7938c5d8b2b7 /support/memmove.c
parent42806807b7d67bfe3f9585492128f4984dc31c87 (diff)
downloadshared-mime-info-balsa-2-2.tar.gz
This commit was manufactured by cvs2svn to create branch 'balsa-2-2'.balsa-2-2
svn path=/branches/balsa-2-2/; revision=3367
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;
-}