mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-09-05 13:11:44 +00:00
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>
10 lines
215 B
C
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 */
|