Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / math / ftol.c
1 #include <msvcrti.h>
2
3
4 long _ftol(double fl)
5 {
6 return (long)fl;
7 }