aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/rtc.h
diff options
context:
space:
mode:
authorMarvin Borner2021-05-20 20:41:24 +0200
committerMarvin Borner2021-05-20 20:41:24 +0200
commit298aaf63f15350e6248d5a96e8c6a63b0ec93e0f (patch)
tree952331f841b4d02d0b7189da716648df5cdb4d8e /kernel/inc/rtc.h
parentb22346a9b830b642e684e13cf4946d8ef8d8e1ca (diff)
Major restructuring
Diffstat (limited to 'kernel/inc/rtc.h')
-rw-r--r--kernel/inc/rtc.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/kernel/inc/rtc.h b/kernel/inc/rtc.h
deleted file mode 100644
index 44a9c9e..0000000
--- a/kernel/inc/rtc.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// MIT License, Copyright (c) 2021 Marvin Borner
-
-#ifndef RTC_H
-#define RTC_H
-
-#include <def.h>
-
-struct rtc {
- u8 second;
- u8 minute;
- u8 hour;
- u8 day;
- u8 month;
- u32 year;
-};
-
-struct rtc rtc_read(void);
-u32 rtc_stamp(void);
-CLEAR void rtc_install(void);
-
-#endif