mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-08-26 16:28:12 +00:00
1add9f7367
Fixes include: - Error handling - Cleanup - Standard init/uninit Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
10 lines
161 B
C
10 lines
161 B
C
#ifndef KVM_MPTABLE_H_
|
|
#define KVM_MPTABLE_H_
|
|
|
|
struct kvm;
|
|
|
|
int mptable__init(struct kvm *kvm);
|
|
int mptable__exit(struct kvm *kvm);
|
|
|
|
#endif /* KVM_MPTABLE_H_ */
|