newlib/winsup/mingw/samples/dlltest/expexe.c

18 lines
172 B
C
Raw Normal View History

2002-05-28 15:13:45 +02:00
#include <stdio.h>
int
ExportedFromExe ()
{
printf ("This output produced by ExportedFromExe.\n");
return 0;
}
int main()
{
printf ("Hello, world\n");
return 0;
}