summaryrefslogtreecommitdiff
path: root/nuttx/include/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/include/time.h')
-rw-r--r--nuttx/include/time.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/nuttx/include/time.h b/nuttx/include/time.h
index 623f9afb2..d053a845a 100644
--- a/nuttx/include/time.h
+++ b/nuttx/include/time.h
@@ -127,11 +127,9 @@ struct tm
int tm_mday; /* day of the month (1-31) */
int tm_mon; /* month (0-11) */
int tm_year; /* years since 1900 */
-#if 0 /* not supported */
- int tm_wday; /* day of the week (0-6) */
- int tm_yday; /* day of the year (0-365) */
- int tm_isdst; /* non-0 if daylight savings time is in effect */
-#endif
+ int tm_wday; /* day of the week (0-6) */ /*not supported by NuttX*/
+ int tm_yday; /* day of the year (0-365) */ /*not supported by NuttX*/
+ int tm_isdst; /* non-0 if daylight savings time is in effect */ /*not supported by NuttX*/
};
/* Struct itimerspec is used to define settings for an interval timer */