diff options
author | nobody <nobody@localhost> | 2000-05-21 22:40:15 +0000 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-05-21 22:40:15 +0000 |
commit | 40d5cb77dc9a2ec9621b5c67349df56c7ce9d8bc (patch) | |
tree | 70ea22d6a4da2e07bedfe85a5cddc5e7ad0a1246 /support/memmove.c | |
parent | 8835a5b3c7246bf74d93c0bfa41f7600be74f0cc (diff) | |
download | shared-mime-info-40d5cb77dc9a2ec9621b5c67349df56c7ce9d8bc.tar.gz |
This commit was manufactured by cvs2svn to create tag 'GTOP_1_0_8'.GTOP_1_0_8
svn path=/tags/GTOP_1_0_8/; revision=1245
Diffstat (limited to 'support/memmove.c')
-rw-r--r-- | support/memmove.c | 18 |
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; -} |