master
 1#ifndef __wasilibc___header_sys_stat_h
 2#define __wasilibc___header_sys_stat_h
 3
 4#include <__struct_stat.h>
 5
 6#define st_atime st_atim.tv_sec
 7#define st_mtime st_mtim.tv_sec
 8#define st_ctime st_ctim.tv_sec
 9
10#include <__mode_t.h>
11
12#define UTIME_NOW (-1)
13#define UTIME_OMIT (-2)
14
15#endif