shithub: trueawk

Download patch

ref: c3d8f9c50011b7e8e19449b0712e700c0aeb8543
parent: bb538fe67eb91f5aeeb99012304c91aeeb08ba97
author: Arnold D. Robbins <arnold@skeeve.com>
date: Sun Apr 5 17:14:46 EDT 2020

Update FIXES and version date.

--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,10 @@
 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".
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20200228";
+const char	*version = "version 20200405";
 
 #define DEBUG
 #include <stdio.h>
--