home *** CD-ROM | disk | FTP | other *** search
/ Graphics 16,000 / graphics-16000.iso / msdos / animutil / flilib / flisrc / jclose.c < prev    next >
C/C++ Source or Header  |  1989-11-16  |  159b  |  13 lines

  1. #include "jlib.h"
  2.  
  3. /* Close file */
  4. void dos_close (Jfile f)
  5. {
  6. union i86_regs reg;
  7.  
  8. reg.b.ah = 0x3e;
  9. reg.w.bx = f;
  10. i86_sysint(0x21,®, ®);
  11. }
  12.  
  13.