summaryrefslogtreecommitdiff
path: root/minilib/minilib.c
blob: 54f7f9d0fe1a049e7956e71040bfc8581cb37a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "minilib.h"
#include "io.h"
#include "stdlib.h"

void halt( void )
{	
	print( "SYSTEM HALT" );
	
	/* TODO: this is host-only */
	exit( 1 );
}