Add T106 header file.
Change-Id: I139abf126f194dc011d5cdf531722152f90a1e90
diff --git a/mbtk/lynq_lib/src/lynq_time.c b/mbtk/lynq_lib/src/lynq_time.c
new file mode 100755
index 0000000..ce3d3ec
--- /dev/null
+++ b/mbtk/lynq_lib/src/lynq_time.c
@@ -0,0 +1,58 @@
+#include "lynq_systime.h"
+#include "mbtk_type.h"
+
+int ntp_sync_time(int enable)
+{
+ UNUSED(enable);
+
+ return 0;
+}
+
+int modem_time_enable(int enable)
+{
+ UNUSED(enable);
+
+ return 0;
+}
+
+int gnss_time_enable(int enable)
+{
+ UNUSED(enable);
+
+ return 0;
+}
+
+int user_set_time(char* date, char* time)
+{
+ UNUSED(date);
+ UNUSED(time);
+
+ return 0;
+}
+
+int lynq_sync_time_from_rtc(void)
+{
+
+ return 0;
+}
+
+int lynq_get_time_src_status (time_src_status_s * time_src)
+{
+ UNUSED(time_src);
+
+ return 0;
+}
+
+int lynq_set_rtc_time(void)
+{
+
+ return 0;
+}
+
+int lynq_get_rtc_time(unsigned long *ulsec)
+{
+ UNUSED(ulsec);
+
+ return 0;
+}
+