gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] gawk branch, master, updated. gawk-4.1.0-3884-ga63a80f


From: Arnold Robbins
Subject: [SCM] gawk branch, master, updated. gawk-4.1.0-3884-ga63a80f
Date: Mon, 27 Jan 2020 02:26:54 -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, master has been updated
       via  a63a80f6e0f734c235fc64ee81cd155bcf0730ca (commit)
      from  f2033cb262f310f1a82e53ca1d2124f2389bb37e (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=a63a80f6e0f734c235fc64ee81cd155bcf0730ca

commit a63a80f6e0f734c235fc64ee81cd155bcf0730ca
Author: Arnold D. Robbins <address@hidden>
Date:   Mon Jan 27 00:26:44 2020 -0700

    Fix non-VMS compilation.

diff --git a/ChangeLog b/ChangeLog
index a34532f..47e562f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
+2020-01-27         Arnold D. Robbins     <address@hidden>
+
+       * custom.h: Fix non-VMS compilation.
+
 2020-01-26         John E. Malmberg      <address@hidden>
 
        * custom.h: Additional OpenVMS typedefs needed.
-       * getext.h: Fix macro for implementations with out gettext
+       * getext.h: Fix macro for implementations without gettext
        to not force the result to be a const char *.
 
 2020-01-26         Andrew J. Schorr      <address@hidden>
diff --git a/custom.h b/custom.h
index 2f3a232..ffeb77e 100644
--- a/custom.h
+++ b/custom.h
@@ -46,17 +46,16 @@
 #undef isnan
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE 1
-#endif
+#endif /* _GNU_SOURCE */
 #ifndef SIZE_MAX
 #define SIZE_MAX __INT32_MAX
-#endif
+#endif /* SIZE_MAX */
 #define ULONG_WIDTH 32
 #ifndef __VAX
 #ifndef ULLONG_MAX
 #define ULLONG_MAX __UINT64_MAX
-#endif
-#endif
-#endif
+#endif /* ULLONG_MAX */
+#endif /* __VAX */
 typedef char int_least8_t;
 typedef unsigned char uint_least8_t;
 typedef short int_least16_t;
@@ -64,7 +63,8 @@ typedef unsigned short uint_least16_t;
 #ifndef __VAX
 typedef long long int_fast64_t;
 typedef unsigned long long uint_fast64_t;
-#endif
+#endif /* __VAX */
+#endif /* __VMS */
 
 
 /* For QNX, based on submission from Michael Hunter, address@hidden */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |  6 +++++-
 custom.h  | 12 ++++++------
 2 files changed, 11 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]