mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
Moved _ftol to NTDLL
svn path=/trunk/; revision=4574
This commit is contained in:
parent
f4e4a5dd14
commit
6aa450d7d9
3 changed files with 5 additions and 12 deletions
|
@ -19,9 +19,9 @@
|
||||||
; DISCLAMED. This includes but is not limited to warrenties of
|
; DISCLAMED. This includes but is not limited to warrenties of
|
||||||
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
;
|
;
|
||||||
; $Revision: 1.14 $
|
; $Revision: 1.15 $
|
||||||
; $Author: ea $
|
; $Author: gvg $
|
||||||
; $Date: 2000/12/22 23:20:15 $
|
; $Date: 2003/04/24 22:21:13 $
|
||||||
;
|
;
|
||||||
; These three functions appear to be name mangled in some way, so GCC is
|
; 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.
|
; probably not going to be able to use them in any case.
|
||||||
|
@ -151,7 +151,7 @@ _fputwchar
|
||||||
_fsopen
|
_fsopen
|
||||||
_fstat
|
_fstat
|
||||||
_ftime
|
_ftime
|
||||||
_ftol
|
_ftol=NTDLL._ftol
|
||||||
_fullpath
|
_fullpath
|
||||||
_futime
|
_futime
|
||||||
_gcvt
|
_gcvt
|
||||||
|
|
|
@ -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 = ../..
|
PATH_TO_TOP = ../..
|
||||||
|
|
||||||
|
@ -161,7 +161,6 @@ MATH_OBJECTS = \
|
||||||
math/floor.o \
|
math/floor.o \
|
||||||
$(PATH_TO_MSVCRT)/math/fmod.o \
|
$(PATH_TO_MSVCRT)/math/fmod.o \
|
||||||
$(PATH_TO_MSVCRT)/math/frexp.o \
|
$(PATH_TO_MSVCRT)/math/frexp.o \
|
||||||
$(PATH_TO_MSVCRT)/math/ftol.o \
|
|
||||||
math/huge_val.o \
|
math/huge_val.o \
|
||||||
$(PATH_TO_MSVCRT)/math/hypot.o \
|
$(PATH_TO_MSVCRT)/math/hypot.o \
|
||||||
$(PATH_TO_MSVCRT)/math/j0_y0.o \
|
$(PATH_TO_MSVCRT)/math/j0_y0.o \
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include <msvcrt/float.h>
|
|
||||||
|
|
||||||
long _ftol(double fl)
|
|
||||||
{
|
|
||||||
return (long)fl;
|
|
||||||
}
|
|
Loading…
Reference in a new issue