Fix import for dirent.h

This commit is contained in:
Kevin Lange 2012-10-08 19:37:46 -07:00
parent 5249138dcd
commit 1a648129cb

View File

@ -1,10 +1,11 @@
#ifndef DIRENT_H
struct dirent {
#include <stdint.h>
typedef struct dirent {
uint32_t d_ino;
char d_name[256];
};
} dirent;
typedef struct DIR {
int fd;