1*5af32e75SAxel Dörfler /* 2*5af32e75SAxel Dörfler ** Copyright 2001, Travis Geiselbrecht. All rights reserved. 3*5af32e75SAxel Dörfler ** Distributed under the terms of the NewOS License. 4*5af32e75SAxel Dörfler */ 5*5af32e75SAxel Dörfler 6*5af32e75SAxel Dörfler 7*5af32e75SAxel Dörfler #include <sys/types.h> 8*5af32e75SAxel Dörfler #include <string.h> 9*5af32e75SAxel Dörfler 10*5af32e75SAxel Dörfler #ifdef bcopy 11*5af32e75SAxel Dörfler # undef bcopy 12*5af32e75SAxel Dörfler #endif 13*5af32e75SAxel Dörfler 14*5af32e75SAxel Dörfler void *bcopy(void const *src, void *dest, size_t count); 15*5af32e75SAxel Dörfler 16*5af32e75SAxel Dörfler void * 17*5af32e75SAxel Dörfler bcopy(void const *src, void *dest, size_t count) 18*5af32e75SAxel Dörfler { 19*5af32e75SAxel Dörfler return memcpy(dest, src, count); 20*5af32e75SAxel Dörfler } 21*5af32e75SAxel Dörfler 22