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