home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / FSYNC.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  174 b   |  10 lines

  1. /* fsync.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <io.h>
  5.  
  6. int fsync (int handle)
  7. {
  8.   return (__fsync (handle));
  9. }
  10.