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