diff options
Diffstat (limited to 'src/basic/calendarspec.h')
-rw-r--r-- | src/basic/calendarspec.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/basic/calendarspec.h b/src/basic/calendarspec.h index 7baf318249..75b699682a 100644 --- a/src/basic/calendarspec.h +++ b/src/basic/calendarspec.h @@ -25,6 +25,7 @@ * time, a la cron */ #include <stdbool.h> + #include "util.h" typedef struct CalendarComponent { @@ -36,6 +37,7 @@ typedef struct CalendarComponent { typedef struct CalendarSpec { int weekdays_bits; + bool utc; CalendarComponent *year; CalendarComponent *month; @@ -43,7 +45,7 @@ typedef struct CalendarSpec { CalendarComponent *hour; CalendarComponent *minute; - CalendarComponent *second; + CalendarComponent *microsecond; } CalendarSpec; void calendar_spec_free(CalendarSpec *c); |