summaryrefslogtreecommitdiff
path: root/support/memmove.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-12-14 04:59:04 +0000
committernobody <nobody@localhost>2001-12-14 04:59:04 +0000
commit6e1063fbfc3becf6ef7d89797a2b7c3f771ba208 (patch)
tree32cb6f4702fe446ea804947fa4479b5431a3d24a /support/memmove.c
parent5d3e1d18a78a4e758f0dd2aafd3cb8510cc20fb4 (diff)
downloadshared-mime-info-gdl-0-1-branch.tar.gz
This commit was manufactured by cvs2svn to create branchgdl-0-1-branch
'gdl-0-1-branch'. svn path=/branches/gdl-0-1-branch/; revision=2219
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;
-}