blob: 61733996d2b6a04cff365d11f3802b77c3c0db66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <bits/ensure.h>
#include <sys/timex.h>
int adjtimex(struct timex *) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
int clock_adjtime(clockid_t, struct timex *) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
int ntp_adjtime(struct timex *) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
|