summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-29 22:22:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-29 22:22:26 (GMT)
commitee9004c35f280a9747f2423aeb98ce63aa1c3400 (patch)
tree2ad3e25d0fd5d7c63bf99aa9566a675987b728d6 /unix
parentb5b121bedb44bb9c322dc93b41b99b66a0f91630 (diff)
parent0a3a1a075a83958d2d61db81c59720964c6ebfe2 (diff)
downloadtcl-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-xunix/configure1
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))