summaryrefslogtreecommitdiffstats
path: root/pbl/misc.c
blob: a2cb44deac65cb249c9da65e0d39898670a34c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <common.h>
#include <init.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/ctype.h>

void __noreturn hang(void)
{
	while (1);
}

void __noreturn panic(const char *fmt, ...)
{
	while(1);
}

void start_barebox(void)
{
}