Changes in uspace/lib/c/include/dirent.h [bebd154:4805495] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/dirent.h
rbebd154 r4805495 36 36 #define _LIBC_DIRENT_H_ 37 37 38 #include <_bits/decls.h> 39 40 __C_DECLS_BEGIN; 38 #define NAME_MAX 256 41 39 42 40 struct dirent { 43 char d_name[ 256];41 char d_name[NAME_MAX + 1]; 44 42 }; 45 43 … … 51 49 extern int closedir(DIR *); 52 50 53 __C_DECLS_END;54 55 51 #endif 56 52
Note:
See TracChangeset
for help on using the changeset viewer.