This commit is contained in:
Tiago Medicci Serrano 2025-01-12 11:18:35 +08:00 committed by GitHub
commit de867b77a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -112,6 +112,7 @@
struct dirent
{
ino_t d_ino; /* file number */
uint8_t d_type; /* Type of file */
char d_name[NAME_MAX + 1]; /* File name */
};

View file

@ -152,6 +152,7 @@ struct nuttx_timespec
struct nuttx_dirent_s
{
ino_t d_ino; /* file number */
uint8_t d_type; /* type of file */
char d_name[CONFIG_NAME_MAX + 1]; /* filename */
};