1
0
Fork 0
mirror of https://github.com/tailix/drivers.git synced 2025-02-17 15:45:34 -05:00
drivers/include/drivers/shutdown.h
2022-12-03 20:06:34 +04:00

15 lines
262 B
C

#ifndef DRIVERS_INCLUDED_SHUTDOWN
#define DRIVERS_INCLUDED_SHUTDOWN
#ifdef __cplusplus
extern "C" {
#endif
__attribute__((noreturn)) void drivers_shutdown_halt();
__attribute__((noreturn)) void drivers_shutdown_poweroff();
#ifdef __cplusplus
}
#endif
#endif