blob: bcae856c7a35cfd188d0a6bb92b4bdee2ca7f3c3 [file]
#include <stdio.h>
#include <stdbool.h>
static bool __booting_xen = false;
bool booting_xen(void)
{
return __booting_xen;
}
int xen_start(void)
{
__booting_xen = true;
printf("Initializing Xen guest\n");
return 0;
}