Update version and FIXES.

This commit is contained in:
Arnold D. Robbins 2020-02-06 21:47:31 +02:00
parent 3c755f73f4
commit 8447cc9d47
2 changed files with 5 additions and 1 deletions

4
FIXES
View File

@ -25,6 +25,10 @@ THIS SOFTWARE.
This file lists all bug fixes, changes, etc., made since the AWK book This file lists all bug fixes, changes, etc., made since the AWK book
was sent to the printers in August, 1987. was sent to the printers in August, 1987.
February 6, 2020:
Additional small cleanups from Christos Zoulas. awk is now
a little more robust about reporting I/O errors upon exit.
January 31, 2020: January 31, 2020:
Merge PR #70, which avoids use of variable length arrays. Thanks Merge PR #70, which avoids use of variable length arrays. Thanks
to GitHub user michaelforney. Fix issue #60 ({0} in interval to GitHub user michaelforney. Fix issue #60 ({0} in interval

2
main.c
View File

@ -22,7 +22,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE. THIS SOFTWARE.
****************************************************************/ ****************************************************************/
const char *version = "version 20200131"; const char *version = "version 20200206";
#define DEBUG #define DEBUG
#include <stdio.h> #include <stdio.h>