Newer
Older
barebox / pbl / misc.c
@Sascha Hauer Sascha Hauer on 26 Oct 2012 248 bytes pbl: provide hang() function for the pbl
#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)
{
}