Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3. #include <dirent.h>
  4. #include "dirstruc.h"
  5.  
  6. int
  7. closedir(DIR *dir)
  8. {
  9.   free(dir);
  10.   return 0;
  11. }
  12.