/* COVERAGE: adjtimex */ #define _GNU_SOURCE #include #include #include int main() { static struct timex ts; memset(&ts, 0, sizeof(ts)); ts.modes = ADJ_STATUS; adjtimex(&ts); //staptest// adjtimex (\{ADJ_STATUS, constant=0, esterror=0, freq=0, maxerror=0, offset=0, precision=0, status=0, tick=0, tolerance=0\}) = NNNN adjtimex((struct timex *)-1); #ifdef __s390__ //staptest// adjtimex (0x[7]?[f]+) = NNNN #else //staptest// adjtimex (0x[f]+) = NNNN #endif return 0; }