master
1#ifndef __wasilibc___struct_stat_h
2#define __wasilibc___struct_stat_h
3
4#include <__typedef_dev_t.h>
5#include <__typedef_ino_t.h>
6#include <__typedef_nlink_t.h>
7#include <__typedef_mode_t.h>
8#include <__typedef_uid_t.h>
9#include <__typedef_gid_t.h>
10#include <__typedef_off_t.h>
11#include <__typedef_blksize_t.h>
12#include <__typedef_blkcnt_t.h>
13#include <__struct_timespec.h>
14
15struct stat {
16 dev_t st_dev;
17 ino_t st_ino;
18 nlink_t st_nlink;
19
20 mode_t st_mode;
21 uid_t st_uid;
22 gid_t st_gid;
23 unsigned int __pad0;
24 dev_t st_rdev;
25 off_t st_size;
26 blksize_t st_blksize;
27 blkcnt_t st_blocks;
28
29 struct timespec st_atim;
30 struct timespec st_mtim;
31 struct timespec st_ctim;
32 long long __reserved[3];
33};
34
35#endif