1 #ifndef KVM_BIOS_MEMCPY_H 2 #define KVM_BIOS_MEMCPY_H 3 4 #include <asm/bios/types.h> 5 #include <stddef.h> 6 7 void memcpy16(u16 dst_seg, void *dst, u16 src_seg, const void *src, size_t len); 8 9 #endif /* KVM_BIOS_MEMCPY_H */ 10