aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-04-05 21:14:46 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-04-05 21:14:46 +0300
commitc3d8f9c50011b7e8e19449b0712e700c0aeb8543 (patch)
tree7713e05931ce180739cb9337e1d617c766fa97b1
parentbb538fe67eb91f5aeeb99012304c91aeeb08ba97 (diff)
downloadone-true-awk-c3d8f9c50011b7e8e19449b0712e700c0aeb8543.tar.gz
Update FIXES and version date.
-rw-r--r--FIXES4
-rw-r--r--main.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/FIXES b/FIXES
index 4342917..e96cf33 100644
--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,10 @@ THIS SOFTWARE.
This file lists all bug fixes, changes, etc., made since the AWK book
was sent to the printers in August, 1987.
+April 5, 2020:
+ Use <stdnoreturn.h> and noreturn instead of GCC attributes.
+ Thanks to GitHub user awkfan77. Closes PR #77.
+
February 28, 2020:
More cleanups from Christos Zoulas: notably backslash continuation
inside strings removes the newline and a fix for RS = "^a".
diff --git a/main.c b/main.c
index 99a73fd..ce0a412 100644
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
****************************************************************/
-const char *version = "version 20200228";
+const char *version = "version 20200405";
#define DEBUG
#include <stdio.h>