X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibposix.so_src%2Finclude_exp%2Fdirent.h;h=747d7ea50e728551a4b460388838e848eba58361;hb=ac3028884d3c109359bc20369391adba7dab4ba9;hp=4f2c0b30869c039ea69e615501e365999f4e755a;hpb=04a050f42807686dc119838c82372409246d55bb;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libposix.so_src/include_exp/dirent.h b/Usermode/Libraries/libposix.so_src/include_exp/dirent.h index 4f2c0b30..747d7ea5 100644 --- a/Usermode/Libraries/libposix.so_src/include_exp/dirent.h +++ b/Usermode/Libraries/libposix.so_src/include_exp/dirent.h @@ -8,6 +8,8 @@ #ifndef _LIBPOSIX__SYS__DIRENT_H_ #define _LIBPOSIX__SYS__DIRENT_H_ +#include "sys/stat.h" + #define NAME_MAX 255 struct dirent @@ -18,8 +20,8 @@ struct dirent typedef struct DIR_s DIR; -extern int closedir(DIR *); extern DIR *opendir(const char *); +extern int closedir(DIR *); extern struct dirent *readdir(DIR *); extern int readdir_r(DIR *, struct dirent *, struct dirent **); extern void rewinddir(DIR *);