Cleanup for proper compilation with uClibc.

This commit is contained in:
Eric Andersen 2000-12-12 23:22:35 +00:00
parent d9d03b83f8
commit e3a48d865a
2 changed files with 4 additions and 2 deletions

3
init.c
View File

@ -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 <sys/reboot.h>
#define init_reboot(magic) reboot(magic)
#else
extern int reboot __P ((int __howto));
#define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
#endif
#endif

View File

@ -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 <sys/reboot.h>
#define init_reboot(magic) reboot(magic)
#else
extern int reboot __P ((int __howto));
#define init_reboot(magic) reboot(0xfee1dead, 672274793, magic)
#endif
#endif