Moved _ftol to NTDLL

svn path=/trunk/; revision=4574
This commit is contained in:
Gé van Geldorp 2003-04-24 22:21:13 +00:00
parent f4e4a5dd14
commit 6aa450d7d9
3 changed files with 5 additions and 12 deletions

View file

@ -19,9 +19,9 @@
; DISCLAMED. This includes but is not limited to warrenties of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
;
; $Revision: 1.14 $
; $Author: ea $
; $Date: 2000/12/22 23:20:15 $
; $Revision: 1.15 $
; $Author: gvg $
; $Date: 2003/04/24 22:21:13 $
;
; These three functions appear to be name mangled in some way, so GCC is
; probably not going to be able to use them in any case.
@ -151,7 +151,7 @@ _fputwchar
_fsopen
_fstat
_ftime
_ftol
_ftol=NTDLL._ftol
_fullpath
_futime
_gcvt

View file

@ -1,4 +1,4 @@
# $Id: makefile,v 1.53 2003/04/06 13:10:21 gvg Exp $
# $Id: makefile,v 1.54 2003/04/24 22:21:13 gvg Exp $
PATH_TO_TOP = ../..
@ -161,7 +161,6 @@ MATH_OBJECTS = \
math/floor.o \
$(PATH_TO_MSVCRT)/math/fmod.o \
$(PATH_TO_MSVCRT)/math/frexp.o \
$(PATH_TO_MSVCRT)/math/ftol.o \
math/huge_val.o \
$(PATH_TO_MSVCRT)/math/hypot.o \
$(PATH_TO_MSVCRT)/math/j0_y0.o \

View file

@ -1,6 +0,0 @@
#include <msvcrt/float.h>
long _ftol(double fl)
{
return (long)fl;
}