xref: /kvmtool/x86/include/asm/bios/memcpy.h (revision 9759db0dd916586ff022f5d16bde5ab52cc05e83)
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