xref: /haiku/src/system/libroot/posix/string/bcopy.c (revision 2754fa8772d477d2da135040411e04c5e614145e)
15af32e75SAxel Dörfler /*
25af32e75SAxel Dörfler ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
35af32e75SAxel Dörfler ** Distributed under the terms of the NewOS License.
45af32e75SAxel Dörfler */
55af32e75SAxel Dörfler 
65af32e75SAxel Dörfler 
75af32e75SAxel Dörfler #include <sys/types.h>
85af32e75SAxel Dörfler #include <string.h>
95af32e75SAxel Dörfler 
105af32e75SAxel Dörfler #ifdef bcopy
115af32e75SAxel Dörfler #	undef bcopy
125af32e75SAxel Dörfler #endif
135af32e75SAxel Dörfler 
145af32e75SAxel Dörfler void *bcopy(void const *src, void *dest, size_t count);
155af32e75SAxel Dörfler 
165af32e75SAxel Dörfler void *
bcopy(void const * src,void * dest,size_t count)175af32e75SAxel Dörfler bcopy(void const *src, void *dest, size_t count)
185af32e75SAxel Dörfler {
19*2754fa87SIngo Weinhold 	return memmove(dest, src, count);
205af32e75SAxel Dörfler }
215af32e75SAxel Dörfler 
22