summaryrefslogtreecommitdiff
path: root/meta-phosphor/common/recipes-phosphor/obmc-phosphor-qemu/files/obmc-phosphor-qemu.c
blob: 8076132eb23b8b378e65017e3f057009d109179b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <stdlib.h>
#include <gio/gio.h>

int main(int argc, char *argv[])
{
	printf("obmc-phosphor-qemu...\n");

	while(1)
		sleep(5);

	exit(EXIT_SUCCESS);
}