summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/samples/simpledll/exe.c
blob: af5bb41df1922cae7de685590de465e3b62d8953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

extern void Test();

int main()
{
	printf ("Program started.\n");
	Test ();
	printf ("Program ends.\n");

	return 0;
}