aboutsummaryrefslogtreecommitdiff
path: root/adjtimex.c
diff options
context:
space:
mode:
Diffstat (limited to 'adjtimex.c')
-rw-r--r--adjtimex.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/adjtimex.c b/adjtimex.c
index 02b6e89b0..e3c160d87 100644
--- a/adjtimex.c
+++ b/adjtimex.c
@@ -44,7 +44,14 @@
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>
+
+#if __GNU_LIBRARY__ < 5
+#include <sys/timex.h>
+extern int adjtimex(struct timex *buf);
+#else
#include <sys/timex.h>
+#endif
+
#ifdef BB_VER
#include "busybox.h"
#endif
@@ -163,7 +170,7 @@ int main(int argc, char ** argv)
" return value: %d (%s)\n",
txc.constant,
txc.precision, txc.tolerance, txc.tick,
- txc.time.tv_sec, txc.time.tv_usec, ret, descript);
+ (long)txc.time.tv_sec, (long)txc.time.tv_usec, ret, descript);
}
return (ret<0);
}