summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2007-01-03 22:35:54 -0500
committerSteve Hay <SteveHay@planit.com>2007-01-04 15:21:50 +0000
commit17dd9954ac1485d9f7bfd39f371dd627e20503a9 (patch)
tree353ad2241f51bca2b37521013e20f68aa3ba4d06 /perl.h
parent8cdc6de6802bf198a023d22fd418a0ddd0f52f67 (diff)
downloadperl-17dd9954ac1485d9f7bfd39f371dd627e20503a9.tar.gz
Re: [PATCH] Symbian port: add Series 90 support
Message-ID: <459CBC6A.4060806@iki.fi> Fixes a VC7/VC7.1 linker error following #29650/#29651 p4raw-id: //depot/perl@29685
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/perl.h b/perl.h
index 85c205e73f..16ebc80497 100644
--- a/perl.h
+++ b/perl.h
@@ -2066,12 +2066,6 @@ int isnan(double d);
# endif
#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
-
/* The default is to use Perl's own atof() implementation (in numeric.c).
* Usually that is the one to use but for some platforms (e.g. UNICOS)
* it is however best to use the native implementation of atof.