summaryrefslogtreecommitdiff
path: root/src/time/struct_tm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/struct_tm.c')
-rw-r--r--src/time/struct_tm.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/time/struct_tm.c b/src/time/struct_tm.c
index 067d54f3..e7f0376f 100644
--- a/src/time/struct_tm.c
+++ b/src/time/struct_tm.c
@@ -1,7 +1,3 @@
-#include <time.h>
-
-/** broken-down time **/
-
struct tm {
int tm_sec; /* Seconds [0,60] */
int tm_min; /* Minutes [0, 59] */
@@ -14,6 +10,8 @@ struct tm {
int tm_isdst; /* Daylight Saving Time flag */
};
+/** broken-down time **/
+
/***
is used to represent time broken down into its individual components.
***/