Index: uspace/drv/time/cmos-rtc/cmos-rtc.c
===================================================================
--- uspace/drv/time/cmos-rtc/cmos-rtc.c	(revision 28ca043f03a30a495ef7a410a939236ea59874bf)
+++ uspace/drv/time/cmos-rtc/cmos-rtc.c	(revision 8d2963dc34bb511b53398338fd2367341a070653)
@@ -65,8 +65,8 @@
 
 static int
-rtc_time_get(ddf_fun_t *fun, time_t *t);
-
-static int
-rtc_time_set(ddf_fun_t *fun, time_t t);
+rtc_time_get(ddf_fun_t *fun, struct tm *t);
+
+static int
+rtc_time_set(ddf_fun_t *fun, struct tm *t);
 
 static int
@@ -231,5 +231,5 @@
  */
 static int
-rtc_time_get(ddf_fun_t *fun, time_t *t)
+rtc_time_get(ddf_fun_t *fun, struct tm *t)
 {
 	return EOK;
@@ -244,5 +244,5 @@
  */
 static int
-rtc_time_set(ddf_fun_t *fun, time_t t)
+rtc_time_set(ddf_fun_t *fun, struct tm *t)
 {
 	return EOK;
