diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-07-08 08:34:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-07-08 08:34:28 +0200 |
commit | 8f6ce094dc780010e51e38bf96b9d107cefdd4b6 (patch) | |
tree | 9ed961ac07cbd230d12bd3f4f25f257736f1477c /miscutils/adjtimex.c | |
parent | 126f2b2853502a7e74e73c11b86a25510a76b9c0 (diff) | |
download | busybox-w32-8f6ce094dc780010e51e38bf96b9d107cefdd4b6.tar.gz busybox-w32-8f6ce094dc780010e51e38bf96b9d107cefdd4b6.tar.bz2 busybox-w32-8f6ce094dc780010e51e38bf96b9d107cefdd4b6.zip |
a few tweaks for bionic
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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, |