htpdate icon indicating copy to clipboard operation
htpdate copied to clipboard

The (new) home of HTTP Time Protocol (HTP)

Results 1 htpdate issues
Sort by recently updated
recently updated
newest added

## t.c ``` #include #include int main(int argc, char *argv[]) { struct timex txc = {}; int ret = adjtimex(&txc); fprintf(stdout, "adjtimex, ret=%d, STA_UNSYNC=%d, TIME_OK=%d, TIME_ERROR=%d\n", ret, (txc.status & STA_UNSYNC),...