summaryrefslogtreecommitdiff
path: root/src/time/struct_tm.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 14:11:32 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 14:11:32 -0400
commit77d0069e522400b63c2182fcc5f852718e4e6f2c (patch)
tree6713710011e6e24ebc589d4fa32093e5af329afc /src/time/struct_tm.c
parent896e28812c51b9ffdf3efc00c7d7ef699e380a58 (diff)
rename files that should never be compiled on their own to .h
Diffstat (limited to 'src/time/struct_tm.c')
-rw-r--r--src/time/struct_tm.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/time/struct_tm.c b/src/time/struct_tm.c
deleted file mode 100644
index e7f0376f..00000000
--- a/src/time/struct_tm.c
+++ /dev/null
@@ -1,21 +0,0 @@
-struct tm {
- int tm_sec; /* Seconds [0,60] */
- int tm_min; /* Minutes [0, 59] */
- int tm_hour; /* Hour [0,23] */
- int tm_mday; /* Day of the month [1,31] */
- int tm_mon; /* Month of the year [0,11] */
- int tm_year; /* Years since 1900 */
- int tm_wday; /* Day of the week [0,6] (Sunday = 0) */
- int tm_yday; /* Day of the year [0,365] */
- int tm_isdst; /* Daylight Saving Time flag */
-};
-
-/** broken-down time **/
-
-/***
-is used to represent time broken down into its individual components.
-***/
-
-/*
-STDC(1)
-*/