nativity/lib/libc/include/wasm-wasi-musl/__struct_dirent.h
David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06:00

15 lines
223 B
C

#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