Searched refs:secint (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/contrib/ntp/ntpd/
H A Drefclock_palisade.c440 long secint; local
527 secint = (long) secs;
528 secfrac = secs - secint; /* 0.0 <= secfrac < 1.0 */
532 secint %= 86400; /* Only care about today */
533 pp->hour = secint / 3600;
534 secint %= 3600;
535 pp->minute = secint / 60;
536 secint %= 60;
537 pp->second = secint % 60;

Completed in 67 milliseconds