summaryrefslogtreecommitdiff
path: root/firmware/libc/mktime.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/libc/mktime.c')
-rw-r--r--firmware/libc/mktime.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/firmware/libc/mktime.c b/firmware/libc/mktime.c
index a52381ede5..eaa017122a 100644
--- a/firmware/libc/mktime.c
+++ b/firmware/libc/mktime.c
@@ -23,7 +23,6 @@
23#include <time.h> 23#include <time.h>
24#include "config.h" 24#include "config.h"
25 25
26#if CONFIG_RTC
27/* mktime() code taken from lynx-2.8.5 source, written 26/* mktime() code taken from lynx-2.8.5 source, written
28 by Philippe De Muyter <phdm@macqel.be> */ 27 by Philippe De Muyter <phdm@macqel.be> */
29time_t mktime(struct tm *t) 28time_t mktime(struct tm *t)
@@ -58,4 +57,3 @@ time_t mktime(struct tm *t)
58 result += t->tm_sec; 57 result += t->tm_sec;
59 return(result); 58 return(result);
60} 59}
61#endif