about summary refs log tree commit diff
path: root/string/bcopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/bcopy.c')
-rw-r--r--string/bcopy.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/string/bcopy.c b/string/bcopy.c
index 326478a995..f74e589449 100644
--- a/string/bcopy.c
+++ b/string/bcopy.c
@@ -17,12 +17,8 @@
 
 #include <string.h>
 
-#define	memmove		bcopy
-#define	rettype		void
-#define	RETURN(s)	return
-#define	a1		src
-#define	a1const		const
-#define	a2		dest
-#define	a2const
-
-#include <string/memmove.c>
+void
+bcopy (const void *src, void *dest, size_t len)
+{
+  memmove (dest, src, len);
+}