summaryrefslogtreecommitdiff
path: root/src/lib/halt.c
blob: 441f5bb78672bfccf9827f2f8dcc0bfe4d67a12a (plain)
1
2
3
4
5
6
7
8
9
10
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/hlt.h>
#include <halt.h>

void __noreturn abort(void)
{
	while (1)
		hlt();
}