Documentation: Fix sphinx configuration
[coreboot.git] / src / include / halt.h
bloba00975ba2d734fe701e846a44b9755f499bad261
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __HALT_H__
4 #define __HALT_H__
6 /**
7 * halt the system reliably
8 */
9 void __noreturn halt(void);
11 /* Power off the system. */
12 void poweroff(void);
14 #endif /* __HALT_H__ */