master
 1#ifndef __wasilibc___struct_dirent_h
 2#define __wasilibc___struct_dirent_h
 3
 4#include <__typedef_ino_t.h>
 5
 6#define _DIRENT_HAVE_D_TYPE
 7
 8struct dirent {
 9    ino_t d_ino;
10    unsigned char d_type;
11    char d_name[];
12};
13
14#endif