OSDN Git Service

fix prototypes/signature for setgroups, etc.
[android-x86/external-musl-libc.git] / src / linux / adjtimex.c
1 #include <sys/timex.h>
2 #include "syscall.h"
3
4 int adjtimex(struct timex *tx)
5 {
6         return syscall(SYS_adjtimex, tx);
7 }