summaryrefslogtreecommitdiff
path: root/support/memmove.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-09-27 20:57:07 +0000
committernobody <nobody@localhost>1999-09-27 20:57:07 +0000
commit8c72c01310aaa44ec1fa167356767898bac195b0 (patch)
treeec2c0d2d7b05d2c92b8675394fcb46bd3f9c7748 /support/memmove.c
parentf79df305998d9531856a762a2c13d911799aaf1f (diff)
downloadgnome-common-GHEX_1_50.tar.gz
This commit was manufactured by cvs2svn to create branch 'GHEX_1_50'.GHEX_1_50
svn path=/branches/GHEX_1_50/; revision=938
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;
-}