From: Eric Andersen Date: Tue, 12 Dec 2000 23:22:35 +0000 (-0000) Subject: Cleanup for proper compilation with uClibc. X-Git-Tag: 0_48~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e3a48d865a8f95aeedf27a31fe153ecabc2daefb;p=oweals%2Fbusybox.git Cleanup for proper compilation with uClibc. --- diff --git a/init.c b/init.c index e5b1a3931..75d2f33b9 100644 --- a/init.c +++ b/init.c @@ -84,10 +84,11 @@ struct serial_struct { #define RB_DISABLE_CAD 0 #define RB_POWER_OFF 0x4321fedc #define RB_AUTOBOOT 0x01234567 -#if defined(__GLIBC__) +#if defined(__GLIBC__) || defined (__UCLIBC__) #include #define init_reboot(magic) reboot(magic) #else + extern int reboot __P ((int __howto)); #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic) #endif #endif diff --git a/init/init.c b/init/init.c index e5b1a3931..75d2f33b9 100644 --- a/init/init.c +++ b/init/init.c @@ -84,10 +84,11 @@ struct serial_struct { #define RB_DISABLE_CAD 0 #define RB_POWER_OFF 0x4321fedc #define RB_AUTOBOOT 0x01234567 -#if defined(__GLIBC__) +#if defined(__GLIBC__) || defined (__UCLIBC__) #include #define init_reboot(magic) reboot(magic) #else + extern int reboot __P ((int __howto)); #define init_reboot(magic) reboot(0xfee1dead, 672274793, magic) #endif #endif