Rev 1449 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1449 | Rev 1532 | ||
|---|---|---|---|
| Line 31... | Line 31... | ||
| 31 | 31 | ||
| 32 | #include <types.h> |
32 | #include <types.h> |
| 33 | 33 | ||
| 34 | #define DST_NONE 0 |
34 | #define DST_NONE 0 |
| 35 | 35 | ||
| 36 | typedef sysarg_t time_t; |
36 | typedef long time_t; |
| 37 | typedef sysarg_t suseconds_t; |
37 | typedef long suseconds_t; |
| 38 | 38 | ||
| 39 | struct timeval { |
39 | struct timeval { |
| 40 | time_t tv_sec; /* seconds */ |
40 | time_t tv_sec; /* seconds */ |
| 41 | suseconds_t tv_usec; /* microseconds */ |
41 | suseconds_t tv_usec; /* microseconds */ |
| 42 | }; |
42 | }; |