Fix test for use of noreturn.
This commit is contained in:
parent
93e5dd87a1
commit
1107437dce
4
FIXES
4
FIXES
@ -25,6 +25,10 @@ THIS SOFTWARE.
|
||||
This file lists all bug fixes, changes, etc., made since the AWK book
|
||||
was sent to the printers in August, 1987.
|
||||
|
||||
May 5, 2020:
|
||||
Fix checks for compilers that can handle noreturn. Thanks to
|
||||
GitHub user enh-google for pointing it out. Closes Issue #79.
|
||||
|
||||
April 16, 2020:
|
||||
Handle old compilers that don't support C11 (for noreturn).
|
||||
Thanks to Arnold Robbins.
|
||||
|
2
awk.h
2
awk.h
@ -25,7 +25,7 @@ THIS SOFTWARE.
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#if __STDC__ <= 199901L
|
||||
#if __STDC_VERSION__ <= 199901L
|
||||
#define noreturn
|
||||
#else
|
||||
#include <stdnoreturn.h>
|
||||
|
Loading…
Reference in New Issue
Block a user