Rev 2479 | Rev 2541 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2479 | Rev 2486 | ||
|---|---|---|---|
| Line 50... | Line 50... | ||
| 50 | struct timezone { |
50 | struct timezone { |
| 51 | int tz_minuteswest; /* minutes W of Greenwich */ |
51 | int tz_minuteswest; /* minutes W of Greenwich */ |
| 52 | int tz_dsttime; /* type of dst correction */ |
52 | int tz_dsttime; /* type of dst correction */ |
| 53 | }; |
53 | }; |
| 54 | 54 | ||
| - | 55 | extern void tv_add(struct timeval *tv, suseconds_t usecs); |
|
| - | 56 | extern suseconds_t tv_sub(struct timeval *tv1, struct timeval *tv2); |
|
| - | 57 | extern int tv_gt(struct timeval *tv1, struct timeval *tv2); |
|
| - | 58 | extern int tv_gteq(struct timeval *tv1, struct timeval *tv2); |
|
| 55 | int gettimeofday(struct timeval *tv, struct timezone *tz); |
59 | extern int gettimeofday(struct timeval *tv, struct timezone *tz); |
| 56 | 60 | ||
| 57 | #endif |
61 | #endif |
| 58 | 62 | ||
| 59 | /** @} |
63 | /** @} |
| 60 | */ |
64 | */ |