[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-308
From: |
Andrew J. Schorr |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3087-g38a128d |
Date: |
Wed, 12 Dec 2018 14:37:32 -0500 (EST) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.2-stable has been updated
via 38a128d1bf9d3fd27b7e06f3501004698ac968b3 (commit)
from d5d60a503f6de8866be843b40fe6de7c20a0f3a0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=38a128d1bf9d3fd27b7e06f3501004698ac968b3
commit 38a128d1bf9d3fd27b7e06f3501004698ac968b3
Author: Andrew J. Schorr <address@hidden>
Date: Wed Dec 12 14:37:14 2018 -0500
Add comment indicating that timegm came from the Linux man page.
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog
index 2d69087..3119ad8 100644
--- a/missing_d/ChangeLog
+++ b/missing_d/ChangeLog
@@ -1,5 +1,10 @@
2018-12-12 Andrew J. Schorr <address@hidden>
+ * timegm.c (timegm): Add comment indicating that this came from
+ the Linux man page.
+
+2018-12-12 Andrew J. Schorr <address@hidden>
+
* timegm.c: New file implementing timegm.
2018-10-03 Arnold D. Robbins <address@hidden>
diff --git a/missing_d/timegm.c b/missing_d/timegm.c
index f7b780d..fdb65fb 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)
{
-----------------------------------------------------------------------
Summary of changes:
missing_d/ChangeLog | 5 +++++
missing_d/timegm.c | 2 ++
2 files changed, 7 insertions(+)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3087-g38a128d,
Andrew J. Schorr <=