aboutsummaryrefslogtreecommitdiff
path: root/miscutils/adjtimex.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-03 19:49:21 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-03 19:49:21 +0000
commitc89982dcd78b3076cf131dae3ec4ca4b83f1b4da (patch)
tree31f480da01f06ac69514532ce37bbcfde2c43e1b /miscutils/adjtimex.c
parentdeda6a5c0d00d02813cfda0d6262a24462909e9f (diff)
downloadbusybox-w32-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.tar.gz
busybox-w32-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.tar.bz2
busybox-w32-c89982dcd78b3076cf131dae3ec4ca4b83f1b4da.zip
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early.
Diffstat (limited to 'miscutils/adjtimex.c')
-rw-r--r--miscutils/adjtimex.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/miscutils/adjtimex.c b/miscutils/adjtimex.c
index 905b80f47..abd061897 100644
--- a/miscutils/adjtimex.c
+++ b/miscutils/adjtimex.c
@@ -1,3 +1,4 @@
1/* vi: set sw=4 ts=4: */
1/* 2/*
2 * adjtimex.c - read, and possibly modify, the Linux kernel `timex' variables. 3 * adjtimex.c - read, and possibly modify, the Linux kernel `timex' variables.
3 * 4 *
@@ -6,16 +7,16 @@
6 * Copyright 1997, 2000, 2001 Larry Doolittle <LRDoolittle@lbl.gov> 7 * Copyright 1997, 2000, 2001 Larry Doolittle <LRDoolittle@lbl.gov>
7 * 8 *
8 * busyboxed 20 March 2001, Larry Doolittle <ldoolitt@recycle.lbl.gov> 9 * busyboxed 20 March 2001, Larry Doolittle <ldoolitt@recycle.lbl.gov>
9 * 10 *
10 * Licensed under GPLv2 or later, see file License in this tarball for details. 11 * Licensed under GPLv2 or later, see file License in this tarball for details.
11 */ 12 */
12 13
14#include "busybox.h"
13#include <stdio.h> 15#include <stdio.h>
14#include <sys/types.h> 16#include <sys/types.h>
15#include <stdlib.h> 17#include <stdlib.h>
16#include <unistd.h> 18#include <unistd.h>
17#include <sys/timex.h> 19#include <sys/timex.h>
18#include "busybox.h"
19 20
20static const struct {int bit; const char *name;} statlist[] = { 21static const struct {int bit; const char *name;} statlist[] = {
21 { STA_PLL, "PLL" }, 22 { STA_PLL, "PLL" },