diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-11 15:09:49 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-11 15:09:49 +0200 |
commit | feebb01f31e29740b050da1531416c90a12352ca (patch) | |
tree | b693ec44973e3a6566213b9e01ddb83db619c732 /missing_d | |
parent | 56f4a4139ad7e81064e25887f959a4a6e5e54a58 (diff) | |
parent | 3d0561d7546022605687802d19c5effcf89d7172 (diff) | |
download | gawk-feebb01f31e29740b050da1531416c90a12352ca.tar.gz |
Merge branch 'gawk-4.2-stable'
Diffstat (limited to 'missing_d')
-rw-r--r-- | missing_d/ChangeLog | 4 | ||||
-rw-r--r-- | missing_d/timegm.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog index a1095cd4..83cae855 100644 --- a/missing_d/ChangeLog +++ b/missing_d/ChangeLog @@ -1,3 +1,7 @@ +2019-01-09 John E. Malmberg <wb8tyw@qsl.net> + + * timegm.c (timegm): Remove static attribute from function. + 2018-12-12 Andrew J. Schorr <aschorr@telemetry-investments.com> * timegm.c (timegm): Add comment indicating that this came from diff --git a/missing_d/timegm.c b/missing_d/timegm.c index fdb65fb5..faf377ed 100644 --- a/missing_d/timegm.c +++ b/missing_d/timegm.c @@ -3,7 +3,7 @@ /* timegm -- based on Linux timegm man page */ -static time_t +time_t timegm(struct tm *tm) { time_t ret; |