12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef _SYS_REBOOT_H
- #define _SYS_REBOOT_H 1
- #include <features.h>
- #define RB_AUTOBOOT 0x01234567
- #define RB_HALT_SYSTEM 0xcdef0123
- #define RB_ENABLE_CAD 0x89abcdef
- #define RB_DISABLE_CAD 0
- #define RB_POWER_OFF 0x4321fedc
- __BEGIN_DECLS
- extern int reboot (int __howto) __THROW;
- __END_DECLS
- #endif
|