shithub: trueawk

Download patch

ref: 4e34346094e52de09cf9d4f9ae632e81bfe0f981
parent: 9310d452c9cd1dbff4d87557001634ed8d624ed4
author: Arnold D. Robbins <arnold@skeeve.com>
date: Wed Jul 17 17:14:52 EDT 2019

Update FIXES and main.c version.

--- a/FIXES
+++ b/FIXES
@@ -25,6 +25,13 @@
 This file lists all bug fixes, changes, etc., made since the AWK book
 was sent to the printers in August, 1987.
 
+July 17, 2019:
+	Pull in a number of code cleanups and minor fixes from
+	Warner Losh's bsd-ota branch.  The only user visible change
+	is the use of random(3) as the random number generator.
+	Thanks to Warner Losh for collecting all these fixes in
+	one easy place to get them from.
+
 July 16, 2019:
 	Fix field splitting to use FS value as of the time a record
 	was read or assigned to.  Thanks to GitHub user Cody Mello (melloc)
--- a/main.c
+++ b/main.c
@@ -22,7 +22,7 @@
 THIS SOFTWARE.
 ****************************************************************/
 
-const char	*version = "version 20190716";
+const char	*version = "version 20190717";
 
 #define DEBUG
 #include <stdio.h>
--