[Lxml-checkins] r39509 - lxml/branch/lxml-1.2/src/lxml
scoder at codespeak.net
scoder at codespeak.net
Tue Feb 27 15:19:39 CET 2007
Author: scoder
Date: Tue Feb 27 15:19:37 2007
New Revision: 39509
Modified:
lxml/branch/lxml-1.2/src/lxml/etree_defs.h
Log:
fix for fix for MSVC
Modified: lxml/branch/lxml-1.2/src/lxml/etree_defs.h
==============================================================================
--- lxml/branch/lxml-1.2/src/lxml/etree_defs.h (original)
+++ lxml/branch/lxml-1.2/src/lxml/etree_defs.h Tue Feb 27 15:19:37 2007
@@ -49,8 +49,8 @@
/* work around MSDEV 6.0 */
#if (_MSC_VER == 1200) && (WINVER < 0x0500)
-extern "C" long _ftol( double ); //defined by VC6 C libs
-extern "C" long _ftol2( double dblSource ) { return _ftol( dblSource ); }
+long _ftol( double ); //defined by VC6 C libs
+long _ftol2( double dblSource ) { return _ftol( dblSource ); }
#endif
/* Redefinition of some Python builtins as C functions */
More information about the lxml-checkins
mailing list