[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-282
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2828-g260eb47 |
Date: |
Wed, 8 Nov 2017 05:18:51 -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 260eb47384d0f212a8f1cc505d407b7022e8ee46 (commit)
via 1245e9e5153ff9612690177fe64faa5458a8d76c (commit)
from 1bb52dd11b5ccf927a468b5c1f2ae40e007a3990 (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=260eb47384d0f212a8f1cc505d407b7022e8ee46
commit 260eb47384d0f212a8f1cc505d407b7022e8ee46
Author: Arnold D. Robbins <address@hidden>
Date: Wed Nov 8 03:18:35 2017 -0700
Fix permissions on missing_d/ChangeLog.
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog
old mode 100755
new mode 100644
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=1245e9e5153ff9612690177fe64faa5458a8d76c
commit 1245e9e5153ff9612690177fe64faa5458a8d76c
Author: John Malmberg <address@hidden>
Date: Tue Nov 7 19:46:48 2017 -0600
Remove varargs.h support from missing_d/snprintf.c
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog
old mode 100644
new mode 100755
index 56325e5..871f5e5
--- a/missing_d/ChangeLog
+++ b/missing_d/ChangeLog
@@ -1,3 +1,7 @@
+2017-11-07 John E. Malmberg <address@hidden>
+
+ * Remove varargs.h usage in snprintf.c
+
2017-10-19 Arnold D. Robbins <address@hidden>
* 4.2.0: Release tar ball made.
diff --git a/missing_d/snprintf.c b/missing_d/snprintf.c
index 9d692d5..53b75f6 100644
--- a/missing_d/snprintf.c
+++ b/missing_d/snprintf.c
@@ -174,28 +174,12 @@ vsnprintf (char *restrict buf, size_t len,
}
int
-#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
snprintf (char *restrict buf, size_t len, const char *restrict fmt, ...)
-#else
-snprintf (va_alist)
- va_dcl
-#endif
{
int rv;
va_list args;
-#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
va_start (args, fmt);
-#else
- char *buf;
- size_t len;
- char *fmt;
-
- va_start (args);
- buf = va_arg (args, char *);
- len = va_arg (args, size_t);
- fmt = va_arg (args, char *);
-#endif
rv = vsnprintf (buf, len, fmt, args);
va_end (args);
return rv;
-----------------------------------------------------------------------
Summary of changes:
missing_d/ChangeLog | 4 ++++
missing_d/snprintf.c | 16 ----------------
2 files changed, 4 insertions(+), 16 deletions(-)
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-2828-g260eb47,
Arnold Robbins <=