/* init.c */



#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>


int main(void)
{
	char * argv[] = { "sh", NULL };

	open("/dev/console", O_RDONLY);
	open("/dev/console", O_WRONLY);
	open("/dev/console", O_WRONLY);
	execv("/bin/sh", argv);
	return 2;
}

