7 lines
115 B
C
7 lines
115 B
C
#include <sys/timex.h>
|
|
#include "syscall.h"
|
|
|
|
int adjtimex(struct timex *tx)
|
|
{
|
|
return syscall(SYS_adjtimex, tx);
|
|
}
|