Update FIXES and version in main.c.

This commit is contained in:
Arnold D. Robbins 2020-08-07 13:15:17 +03:00
parent b785141019
commit 9c63cb6ccd
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.
August 7, 2020:
Merge PR #93, which adds casts to (void*) for debug prints
using the %p format specifier. Thanks to GitHub user YongHaoWu
("Chris") for the fixes.
August 4, 2020: August 4, 2020:
In run.c, use non-restartable multibyte routines to attain In run.c, use non-restartable multibyte routines to attain
portability to DJGPP. Should fix Issue 92. Thanks to Albert Wik portability to DJGPP. Should fix Issue 92. Thanks to Albert Wik

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