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