Mark shutdown_reboot() and shutdown_power_off() as NO_RETURN.
[pintos-anon] / src / devices / shutdown.h
1 #ifndef DEVICES_SHUTDOWN_H
2 #define DEVICES_SHUTDOWN_H
3
4 #include <debug.h>
5
6 void shutdown_reboot (void) NO_RETURN;
7 void shutdown_power_off (void) NO_RETURN;
8
9 #endif /* devices/shutdown.h */