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

expexe.c « dlltest « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d94ea1e7e281387a56ee00f1826d78c802c9152a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#include <stdio.h>

int
ExportedFromExe ()
{
	printf ("This output produced by ExportedFromExe.\n");
	return 0;
}

int main()
{
	printf ("Hello, world\n");

	return 0;
}