summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/opendir.c
blob: 5c0c4a305480886294fcbed794b5bec1420ded60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "dietdirent.h"
#include <unistd.h>
#include <dirent.h>
#include <stdlib.h>
#include <fcntl.h>

DIR *opendir (const char *name) {
  DIR *t=(DIR*)malloc(sizeof(DIR));
  if (t) {
    if ((t->fd=open(name,O_RDONLY|O_DIRECTORY))>=0) {
      t->num=t->cur=0;
    } else {
      free(t);
      t=0;
    }
  }
  return t;
}