blob: 3bbca0d192e42281617e135b7e5a12904028814a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __HALT_H__
#define __HALT_H__
/**
* halt the system reliably
*/
void __noreturn halt(void);
/* Power off the system. */
void poweroff(void);
#endif /* __HALT_H__ */
|