summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/closedir.c
blob: e73025eb1c364d274c06f8b894f5369488ede49c (plain)
1
2
3
4
5
6
7
8
9
10
#include "dietdirent.h"
#include <unistd.h>
#include <dirent.h>
#include <stdlib.h>

int closedir (DIR* d) {
  int res=close(d->fd);
  free(d);
  return res;
}