summaryrefslogtreecommitdiff
path: root/schulung_tools/linking/hello/hello.c
blob: 9b8d43a33841a6b695bf102b63801d8c6456b138 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <func.h>

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