diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2019-08-27 12:55:57 -0400 |
---|---|---|
committer | Andy Dougherty <doughera@lafayette.edu> | 2019-12-29 17:39:32 -0500 |
commit | f16c94bc75aefb81949b423b399fac4071859f6d (patch) | |
tree | fbf2fb1ce83d223cfb09150b72c2a1dfa6d10846 /Configure | |
parent | 0ccddd991561a646a835e886621a9149544c27d9 (diff) | |
download | perl-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-x | Configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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> |