musl - an implementation of the standard library for Linux-based systems
blob: 91de6824c32b8dabd48151352a24d254d6ec499c (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <sys/timex.h>
#include "syscall.h"
int adjtimex(struct timex *tx)
{
return syscall(SYS_adjtimex, tx);
}
|