master
1#ifndef __wasilibc___struct_timeval_h
2#define __wasilibc___struct_timeval_h
3
4#include <__typedef_time_t.h>
5#include <__typedef_suseconds_t.h>
6
7/* As specified in POSIX. */
8struct timeval {
9 time_t tv_sec;
10 suseconds_t tv_usec;
11};
12
13#endif