Commit ea894013 authored by Pierre Ynard's avatar Pierre Ynard

WinCE: skip fsync() replacement

parent f1433011
...@@ -28,7 +28,8 @@ ...@@ -28,7 +28,8 @@
int fsync (int fd) int fsync (int fd)
{ {
#ifdef WIN32 #if defined(WIN32) && !defined(UNDER_CE)
/* WinCE can use FlushFileBuffers() but it operates on file handles */
return _commit (fd); return _commit (fd);
#else #else
# warning fsync() not implemented! # warning fsync() not implemented!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment