summaryrefslogtreecommitdiff
path: root/src/time/struct_tm.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 14:00:51 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 14:00:51 -0400
commit896e28812c51b9ffdf3efc00c7d7ef699e380a58 (patch)
treeaaa25e093fb4a2ac4c57609e1f745e5ac0734ca8 /src/time/struct_tm.c
parent0b0d1fe1d4fbf8560577d81e5af0549683eac8ba (diff)
formatting
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.
***/