master
 1#ifndef __wasilibc___struct_timespec_h
 2#define __wasilibc___struct_timespec_h
 3
 4#include <__typedef_time_t.h>
 5
 6/* As specified in POSIX. */
 7struct timespec {
 8    time_t tv_sec;
 9    long tv_nsec;
10};
11
12#endif