diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2012-08-18 10:39:56 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2012-08-18 10:39:56 +0100 |
commit | 4eab039da16f1fc2e246f94a6af541703e6a7e9b (patch) | |
tree | 7fe9b2f77d1a5d19bb14c207ba70f5fa116a35c3 /win32/win32.c | |
parent | 955420131882fde0abd8c1d4226cbcc1880a362b (diff) | |
download | perl-4eab039da16f1fc2e246f94a6af541703e6a7e9b.tar.gz |
We don't support compilers other than MS VC++ and MinGW/gcc on Windows
Diffstat (limited to 'win32/win32.c')
-rw-r--r-- | win32/win32.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/win32/win32.c b/win32/win32.c index 024a2a846e..4038316849 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -64,12 +64,7 @@ #include <stdarg.h> #include <float.h> #include <time.h> - -#if defined(_MSC_VER) || defined(__MINGW32__) -# include <sys/utime.h> -#else -# include <utime.h> -#endif +#include <sys/utime.h> #ifdef __GNUC__ /* Mingw32 defaults to globing command line |