1 #ifndef KVM__RTC_H 2 #define KVM__RTC_H 3 4 struct kvm; 5 6 int rtc__init(struct kvm *kvm); 7 int rtc__exit(struct kvm *kvm); 8 9 #endif /* KVM__RTC_H */ 10