mirror of
https://github.com/tailix/drivers.git
synced 2025-02-17 15:45:34 -05:00
15 lines
262 B
C
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
|