diff options
-rw-r--r-- | system/include/libc/sys/dirent.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/system/include/libc/sys/dirent.h b/system/include/libc/sys/dirent.h index da0eb4ac..1fbe2b21 100644 --- a/system/include/libc/sys/dirent.h +++ b/system/include/libc/sys/dirent.h @@ -27,6 +27,13 @@ DIR *readdir(DIR *); int closedir(DIR *dirp); void rewinddir(DIR *dirp); +enum { + DT_UNKNOWN = 0, +#define DT_UNKNOWN DT_UNKNOWN + DT_DIR = 4 +#define DT_DIR DT_DIR +}; + #ifdef __cplusplus } #endif |