• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <sys/timex.h>
2 #include "syscall.h"
3 
adjtimex(struct timex * tx)4 int adjtimex(struct timex *tx)
5 {
6 	return syscall(SYS_adjtimex, tx);
7 }
8