home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / flex.lzh / FLEX / FLEX2 / GNU.LIB.SRC / CLOSEDIR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-16  |  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.