* grub-core/osdep/windows/hostdisk.c (fsync) [__MINGW32__]: ... here.
+2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/kern/emu/misc.c (fsync) [__MINGW32__]: Move to ...
+ * grub-core/osdep/windows/hostdisk.c (fsync) [__MINGW32__]: ... here.
+
2013-10-08 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/osdep/windows/sleep.c: Add missing config.h.
return (tv.tv_sec * 1000 + tv.tv_usec / 1000);
}
-
-#ifdef __MINGW32__
-
-int fsync (int fno __attribute__ ((unused)))
-{
- return 0;
-}
-
-#endif
#endif
return ret;
}
+
+
+#ifdef __MINGW32__
+
+int fsync (int fno __attribute__ ((unused)))
+{
+ return 0;
+}
+
+#endif