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

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

void start_barebox(void)
{
}