Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exe.c « simpledll « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}