diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-29 22:21:20 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-29 22:21:20 (GMT) |
commit | 0a3a1a075a83958d2d61db81c59720964c6ebfe2 (patch) | |
tree | 1c95579fecec5f65dff83f3abdd75a53c85e5c47 /unix/configure | |
parent | 24c0f5047225da348a27676cdfcc4f96ec98ea4b (diff) | |
download | tcl-0a3a1a075a83958d2d61db81c59720964c6ebfe2.zip tcl-0a3a1a075a83958d2d61db81c59720964c6ebfe2.tar.gz tcl-0a3a1a075a83958d2d61db81c59720964c6ebfe2.tar.bz2 |
Fix [43d371ac19]: Usage of exit() without including <stdlib.h> in unix/configure
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/configure b/unix/configure index 150e02f..2a9ed83 100755 --- a/unix/configure +++ b/unix/configure @@ -2799,6 +2799,7 @@ 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)) |