diff options
Diffstat (limited to 'miscutils/adjtimex.c')
-rw-r--r-- | miscutils/adjtimex.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/miscutils/adjtimex.c b/miscutils/adjtimex.c index 98b6ccfbf..c8816e9e7 100644 --- a/miscutils/adjtimex.c +++ b/miscutils/adjtimex.c | |||
@@ -23,7 +23,11 @@ | |||
23 | //usage: "\n -p TCONST" | 23 | //usage: "\n -p TCONST" |
24 | 24 | ||
25 | #include "libbb.h" | 25 | #include "libbb.h" |
26 | #include <sys/timex.h> | 26 | #ifdef __BIONIC__ |
27 | # include <linux/timex.h> | ||
28 | #else | ||
29 | # include <sys/timex.h> | ||
30 | #endif | ||
27 | 31 | ||
28 | static const uint16_t statlist_bit[] = { | 32 | static const uint16_t statlist_bit[] = { |
29 | STA_PLL, | 33 | STA_PLL, |