diff options
-rw-r--r-- | missing_d/ChangeLog | 5 | ||||
-rw-r--r-- | missing_d/timegm.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog index 2d69087a..3119ad81 100644 --- a/missing_d/ChangeLog +++ b/missing_d/ChangeLog @@ -1,5 +1,10 @@ 2018-12-12 Andrew J. Schorr <aschorr@telemetry-investments.com> + * timegm.c (timegm): Add comment indicating that this came from + the Linux man page. + +2018-12-12 Andrew J. Schorr <aschorr@telemetry-investments.com> + * timegm.c: New file implementing timegm. 2018-10-03 Arnold D. Robbins <arnold@skeeve.com> diff --git a/missing_d/timegm.c b/missing_d/timegm.c index f7b780de..fdb65fb5 100644 --- a/missing_d/timegm.c +++ b/missing_d/timegm.c @@ -1,6 +1,8 @@ #include <time.h> #include <stdlib.h> +/* timegm -- based on Linux timegm man page */ + static time_t timegm(struct tm *tm) { |