home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / libfake / fsync.c < prev    next >
Text File  |  1993-05-13  |  304b  |  16 lines

  1. /*
  2.  * fsync(2) emulation for systems lacking it
  3.  *
  4.  * Also strongly recommended if you are not doing processing over NFS,
  5.  * as fsync() is a serious efficiency hit on many systems.  When NFS
  6.  * enters the picture, though, it's probably necessary.
  7.  */
  8.  
  9. /* ARGSUSED */
  10. int
  11. fsync(fd)
  12. int fd;
  13. {
  14.     return 0;
  15. }
  16.