diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-04-18 12:43:17 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-04-18 12:43:17 +0300 |
commit | 9d4eabdf68a3f251dcde079a8ff29ccf83fee122 (patch) | |
tree | 420e81419bd0878f107b53e9591deb43fc5a0caf /pc/config.h | |
parent | 4b98106ce555f9364541e941973852ddc4d34389 (diff) | |
download | egawk-9d4eabdf68a3f251dcde079a8ff29ccf83fee122.tar.gz egawk-9d4eabdf68a3f251dcde079a8ff29ccf83fee122.tar.bz2 egawk-9d4eabdf68a3f251dcde079a8ff29ccf83fee122.zip |
Define HAVE_STDBOOL_H for MinGW.
Diffstat (limited to 'pc/config.h')
-rw-r--r-- | pc/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pc/config.h b/pc/config.h index 52d5a964..62c13f22 100644 --- a/pc/config.h +++ b/pc/config.h @@ -233,7 +233,7 @@ #define HAVE_STDARG_H 1 /* Define to 1 if stdbool.h conforms to C99. */ -#ifdef __DJGPP__ +#if defined(__MINGW32__) || defined(__DJGPP__) #define HAVE_STDBOOL_H 1 #endif |