mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-08-21 12:57:49 +00:00
20c3954574
Fixes include: - Error handling - Cleanup - Standard init/uninit Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
10 lines
141 B
C
10 lines
141 B
C
#ifndef KVM__RTC_H
|
|
#define KVM__RTC_H
|
|
|
|
struct kvm;
|
|
|
|
int rtc__init(struct kvm *kvm);
|
|
int rtc__exit(struct kvm *kvm);
|
|
|
|
#endif /* KVM__RTC_H */
|