summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2019-08-27 12:55:57 -0400
committerAndy Dougherty <doughera@lafayette.edu>2019-12-29 17:39:32 -0500
commitf16c94bc75aefb81949b423b399fac4071859f6d (patch)
treefbf2fb1ce83d223cfb09150b72c2a1dfa6d10846 /Configure
parent0ccddd991561a646a835e886621a9149544c27d9 (diff)
downloadperl-f16c94bc75aefb81949b423b399fac4071859f6d.tar.gz
Add <stdlib.h> for futimes compilation test.
Since the test uses exit(), the appropriate header should be included. clang++ throws an error otherwise.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/Configure b/Configure
index cec4b17f8f..65e624b353 100755
--- a/Configure
+++ b/Configure
@@ -14115,6 +14115,7 @@ echo " "
echo "Checking if you have a working futimes()" >&4
$cat >try.c <<EOCP
#include <stdio.h>
+#include <stdlib.h>
#include <sys/time.h>
#include <errno.h>
#include <fcntl.h>