summaryrefslogtreecommitdiff
path: root/distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello.c
blob: aea850339e87b7624d2833d793fd78fa6900a47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

/*
 * A simple application to greet the world.
 */

int main(void)
{
	printf("Hello, world!\n");
	return 0;
}