| 731 | } |
| 732 | |
| 733 | static intmax_t |
| 734 | delta(struct tm *newp, struct tm *oldp) |
| 735 | { |
| 736 | return (newp->tm_year < oldp->tm_year |
| 737 | ? -delta_nonneg(oldp, newp) |
| 738 | : delta_nonneg(newp, oldp)); |
| 739 | } |
| 740 | |
| 741 | #ifndef TM_GMTOFF |
| 742 | /* Return A->tm_yday, adjusted to compare it fairly to B->tm_yday. |
no test coverage detected