diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-02 20:56:16 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-02 20:56:16 +0000 |
commit | 96d9a06694110826a348a616abc536765a86d4fd (patch) | |
tree | 09e7b482b38ac571a01e936fb91df16dd1eeef42 /procps/sysctl.c | |
parent | ee7674aa004d1bf4b89c321d99549ab59de606ab (diff) | |
download | busybox-w32-96d9a06694110826a348a616abc536765a86d4fd.tar.gz busybox-w32-96d9a06694110826a348a616abc536765a86d4fd.tar.bz2 busybox-w32-96d9a06694110826a348a616abc536765a86d4fd.zip |
- move #include busybox.h to the very top so we pull in the config
and eventual platform specific includes in early.
git-svn-id: svn://busybox.net/trunk/busybox@15267 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'procps/sysctl.c')
-rw-r--r-- | procps/sysctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/sysctl.c b/procps/sysctl.c index 125f13207..5673d293f 100644 --- a/procps/sysctl.c +++ b/procps/sysctl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | 1 | /* vi: set sw=4 ts=4: */ | |
2 | /* | 2 | /* |
3 | * Sysctl 1.01 - A utility to read and manipulate the sysctl parameters | 3 | * Sysctl 1.01 - A utility to read and manipulate the sysctl parameters |
4 | * | 4 | * |
@@ -14,6 +14,7 @@ | |||
14 | * | 14 | * |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "busybox.h" | ||
17 | #include <stdio.h> | 18 | #include <stdio.h> |
18 | #include <stdlib.h> | 19 | #include <stdlib.h> |
19 | #include <unistd.h> | 20 | #include <unistd.h> |
@@ -23,7 +24,6 @@ | |||
23 | #include <string.h> | 24 | #include <string.h> |
24 | #include <errno.h> | 25 | #include <errno.h> |
25 | #include <fcntl.h> | 26 | #include <fcntl.h> |
26 | #include "busybox.h" | ||
27 | 27 | ||
28 | /* | 28 | /* |
29 | * Function Prototypes | 29 | * Function Prototypes |