summaryrefslogtreecommitdiff
path: root/support/memmove.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-12-25 14:31:23 +0000
committernobody <nobody@localhost>1999-12-25 14:31:23 +0000
commit8c7127454525530f0c6236c581c8c7bc476745de (patch)
tree7d0d3756e5b4657c67be691910240a559b06c3cc /support/memmove.c
parentd13f9d91ab9298f4430b5d8198bf6a1bb98db585 (diff)
downloadgnome-common-STABLE.tar.gz
This commit was manufactured by cvs2svn to create tag 'STABLE'.STABLE
svn path=/tags/STABLE/; revision=1051
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 96e257e..0000000
--- 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;
-}