From 4e05b9b0431aff7b44f57c333288401caaf86300 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sat, 7 Dec 2002 23:14:40 +0000 Subject: include "busybox" after the libc includes tofix compile errors --- init/reboot.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'init') diff --git a/init/reboot.c b/init/reboot.c index 1c9eedd..872d9e7 100644 --- a/init/reboot.c +++ b/init/reboot.c @@ -21,18 +21,20 @@ * */ -#include "busybox.h" #include #include #include #include +#include "busybox.h" + #if (__GNU_LIBRARY__ > 5) || defined(__dietlibc__) #include #define init_reboot(magic) reboot(magic) #else #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic) #endif + #ifndef RB_ENABLE_CAD static const int RB_ENABLE_CAD = 0x89abcdef; static const int RB_AUTOBOOT = 0x01234567; -- cgit v1.1