Differences From Artifact [f529d9885e]:
- Executable file unix/configure — part of check-in [1aa2c5b273] at 2020-12-24 12:09:33 on branch core-8-5-branch — Fix check for broken strstr/strtoul/strtod functions: Modern C compilers don't accept signature mismatches any more. (user: jan.nijtmans size: 570823) [more...]
To Artifact [91e94d434e]:
- Executable file unix/configure — part of check-in [dcfe25bc93] at 2020-12-29 22:21:20 on branch core-8-5-branch — Fix [43d371ac19]: Usage of exit() without including <stdlib.h> in unix/configure (user: jan.nijtmans size: 570843) [more...]
| ︙ | |||
2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 | 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 | + |
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
#include <ctype.h>
#include <stdlib.h>
#if ((' ' & 0x0FF) == 0x020)
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
#else
# define ISLOWER(c) \
(('a' <= (c) && (c) <= 'i') \
|| ('j' <= (c) && (c) <= 'r') \
|
| ︙ |