summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2021-11-05 09:38:42 +0000
committerKarl Williamson <khw@cpan.org>2021-12-16 08:06:55 -0700
commit92ca2349051b948d915e3fc721e3cbb97e7271e2 (patch)
tree14e06686231b35ef06ad9d807d9d60d8048c1055 /util.c
parent5124a90647cf2887ce5f9ec87f78b40257a3aff2 (diff)
downloadperl-92ca2349051b948d915e3fc721e3cbb97e7271e2.tar.gz
_MSC_VER is now always >= 1800 (i.e. Visual C++ 2013, aka Visual C++ 12.0)
Diffstat (limited to 'util.c')
-rw-r--r--util.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/util.c b/util.c
index 068b0e737c..3587fe7e10 100644
--- a/util.c
+++ b/util.c
@@ -5775,12 +5775,6 @@ Perl_my_strlcpy(char *dst, const char *src, Size_t size)
}
#endif
-#if defined(_MSC_VER) && (_MSC_VER >= 1300) && (_MSC_VER < 1400) && (WINVER < 0x0500)
-/* VC7 or 7.1, building with pre-VC7 runtime libraries. */
-long _ftol( double ); /* Defined by VC6 C libs. */
-long _ftol2( double dblSource ) { return _ftol( dblSource ); }
-#endif
-
PERL_STATIC_INLINE bool
S_gv_has_usable_name(pTHX_ GV *gv)
{