implement the adjtime and adjtimex functions (nonstandard)

This commit is contained in:
Rich Felker
2011-04-05 15:38:20 -04:00
parent 2c4e9e6e4b
commit f209440bcf
2 changed files with 34 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#include <sys/timex.h>
#include "syscall.h"
int adjtimex(struct timex *tx)
{
return syscall(SYS_adjtimex, tx);
}