summaryrefslogtreecommitdiff
path: root/userland/libc/dirent/closedir.c
blob: e216d7c63e75029dce84ae2ae598fb017b612b99 (plain)
1
2
3
4
5
6
7
#include <dirent.h>

int closedir(DIR *dir) {
  close(dir->fd);
  free(dir);
  return 0;
}