Update version and FIXES.

This commit is contained in:
Arnold D. Robbins 2019-12-08 21:43:32 +02:00
parent ff5d67610c
commit 416c6db5ee
2 changed files with 6 additions and 1 deletions

5
FIXES
View File

@ -25,6 +25,11 @@ 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.
December 8, 2019:
Fix the return value of sprintf("%d") on 32 bit systems.
Thanks to Jim Lowe for the report and to Christos Zoulas
for the fix.
November 10, 2019: November 10, 2019:
Convert a number of Boolean integer variables into Convert a number of Boolean integer variables into
actual bools. Convert compile_time variable into an actual bools. Convert compile_time variable into an

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 20191110"; const char *version = "version 20191208";
#define DEBUG #define DEBUG
#include <stdio.h> #include <stdio.h>