| 459 | #endif /* FFCLOCK */ |
| 460 | |
| 461 | void |
| 462 | getboottime(struct timeval *boottime) |
| 463 | { |
| 464 | struct bintime boottimebin; |
| 465 | |
| 466 | getboottimebin(&boottimebin); |
| 467 | bintime2timeval(&boottimebin, boottime); |
| 468 | } |
| 469 | |
| 470 | void |
| 471 | getboottimebin(struct bintime *boottimebin) |
no test coverage detected