diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-07-26 13:42:12 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-07-26 13:42:12 +0200 |
commit | 67905e2d7c6ee273b753af22fb22de0ebec918c1 (patch) | |
tree | cd61c7674c123307490cf1ff290ecb76a5c2905c /init/init.c | |
parent | 4abcb8b0d1c41544902ccd7927148eea393be37e (diff) | |
download | busybox-w32-67905e2d7c6ee273b753af22fb22de0ebec918c1.tar.gz busybox-w32-67905e2d7c6ee273b753af22fb22de0ebec918c1.tar.bz2 busybox-w32-67905e2d7c6ee273b753af22fb22de0ebec918c1.zip |
*: work around sysinfo.h versus linux/*.h problems
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init/init.c')
-rw-r--r-- | init/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c index ff9dc06a4..645f694c0 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -113,7 +113,8 @@ | |||
113 | #include <paths.h> | 113 | #include <paths.h> |
114 | #include <sys/resource.h> | 114 | #include <sys/resource.h> |
115 | #ifdef __linux__ | 115 | #ifdef __linux__ |
116 | #include <linux/vt.h> | 116 | # include <linux/vt.h> |
117 | # include <sys/sysinfo.h> | ||
117 | #endif | 118 | #endif |
118 | #include "reboot.h" /* reboot() constants */ | 119 | #include "reboot.h" /* reboot() constants */ |
119 | 120 | ||