diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-07 18:11:02 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-07 18:11:02 +0300 |
commit | 9955d1799245b9364112c5277ad58273a7c915b9 (patch) | |
tree | 33fb8371e7905edf846a3ff0cbf9fcf23305f7d0 /custom.h | |
parent | a9e991ea8292ab72e452688577e179e62c0e0b1b (diff) | |
parent | 02e8aa7f237791e13b1431f70df14fa3a3404bc2 (diff) | |
download | egawk-9955d1799245b9364112c5277ad58273a7c915b9.tar.gz egawk-9955d1799245b9364112c5277ad58273a7c915b9.tar.bz2 egawk-9955d1799245b9364112c5277ad58273a7c915b9.zip |
Merge branch 'gawk-4.2-stable' into feature/gnulib-regex
Diffstat (limited to 'custom.h')
-rw-r--r-- | custom.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -44,6 +44,13 @@ #include <fp.h> /* isnan () macro is broken */ #undef isnan +#ifndef _GNU_SOURCE +#define _GNU_SOURCE 1 +#endif +#define __builtin_expect(expr, val) (expr) +#ifndef SIZE_MAX +#define SIZE_MAX __INT32_MAX +#endif #endif /* For QNX, based on submission from Michael Hunter, mphunter@qnx.com */ |