Fixed some bug, added the humidity sensor
[fw/sdcc] / device / examples / ds390 / ow390 / time.h
diff --git a/device/examples/ds390/ow390/time.h b/device/examples/ds390/ow390/time.h
deleted file mode 100644 (file)
index 54dd150..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-struct tm
-{
-  int tm_sec;                   /* Seconds.     [0-60] (1 leap second) */
-  int tm_min;                   /* Minutes.     [0-59] */
-  int tm_hour;                  /* Hours.       [0-23] */
-  int tm_mday;                  /* Day.         [1-31] */
-  int tm_mon;                   /* Month.       [0-11] */
-  int tm_year;                  /* Year - 1900.  */
-  int tm_wday;                  /* Day of week. [0-6] */
-  int tm_yday;                  /* Days in year.[0-365] */
-  int tm_isdst;                 /* Daylight saving time */
-};
-
-typedef unsigned long time_t;
-
-time_t time(time_t *t);
-struct tm *localtime(time_t *timep);