Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / math / ftol.c
index b20aef4..1753090 100644 (file)
@@ -1,5 +1,6 @@
-#include <crtdll/float.h>
+#include <msvcrt/float.h>
 
-long _ftol(double fl) {
+long _ftol(double fl)
+{
        return (long)fl;
 }