Files
Andre Przywara 9759db0dd9 kvmtool: move include/bios/memcpy.h to x86/include/asm/bios
This file contains a prototype solely used by the BIOS blob code
for x86 systems. Make this clear by moving the include file into
the x86 directory.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
2015-06-01 17:54:09 +01:00

10 lines
215 B
C

#ifndef KVM_BIOS_MEMCPY_H
#define KVM_BIOS_MEMCPY_H
#include <asm/bios/types.h>
#include <stddef.h>
void memcpy16(u16 dst_seg, void *dst, u16 src_seg, const void *src, size_t len);
#endif /* KVM_BIOS_MEMCPY_H */