home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_03 / 2n03070a < prev    next >
Text File  |  1991-01-14  |  131b  |  9 lines

  1. /* Flush open fine FAT information to disk: */
  2.  
  3. #include <io.h>
  4.  
  5. int commitFile( int hFile)
  6. {
  7.     return close(dup(hFile));
  8. }
  9.