1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef ZEPHYR_INCLUDE_SYS_REBOOT_H_
- #define ZEPHYR_INCLUDE_SYS_REBOOT_H_
- #include <toolchain.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define SYS_REBOOT_WARM 0
- #define SYS_REBOOT_COLD 1
- extern FUNC_NORETURN void sys_reboot(int type);
- #ifdef __cplusplus
- }
- #endif
- #endif
|