Browse Source

WinCE: skip fsync() replacement

pull/2/head
Pierre Ynard 15 years ago
parent
commit
ea89401362
  1. 3
      compat/fsync.c

3
compat/fsync.c

@ -28,7 +28,8 @@
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);
#else
# warning fsync() not implemented!

Loading…
Cancel
Save