dfa334624e66d0abd81da50b5d79dfba7a5706e2
[reactos.git] / lib / msvcrt / math / ftol.c
1 #include <msvcrt/float.h>
2
3 long _ftol(double fl)
4 {
5   return (long)fl;
6 }