home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 213b.lha / Flex / Flex2 / gnu.lib.src / closedir.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-14  |  219 b   |  16 lines

  1. /*
  2.  * BSD/Unix expansion library for Amiga.
  3.  *
  4.  * closedir() -- system independent directory code
  5.  */
  6.  
  7. #include "dir.h"
  8.  
  9. void
  10. closedir(my_dir)
  11.    DIR *my_dir;
  12. {
  13.     UnLock(my_dir->d_lock);
  14.     FreeMem(my_dir, sizeof(DIR));
  15. }
  16.