Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
linux
/
adjtimex.c
blob: c74a1e8490acbc35fc25af7eb1a06487e98d5612 [
file
] [
log
] [
blame
]
Viet-Trung Luu
96b05c1
2016-01-11 11:26:36 -0800
[
diff
] [
blame
]
1
#include
<sys/timex.h>
2
#include
"syscall.h"
3
George Kulakowski
17e3b04
2016-02-18 15:59:50 -0800
[
diff
] [
blame
]
4
int
adjtimex
(
struct
timex
*
tx
)
{
5
return
syscall
(
SYS_adjtimex
,
tx
);
Viet-Trung Luu
96b05c1
2016-01-11 11:26:36 -0800
[
diff
] [
blame
]
6
}