home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / DACLOSE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-21  |  247 b   |  13 lines

  1. /*    da_close(fd) will close the file whose descriptor is provided.
  2.  
  3.     Copyright (c) 1983 by James F. Gimpel
  4.     Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
  5. */
  6. #include "acom.h"
  7.  
  8. VOID da_close(fd)
  9.     FILE fd;
  10.     {
  11.     close(fd);
  12.     }
  13.