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