mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-23 15:40:14 +08:00
18 lines
189 B
C
18 lines
189 B
C
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
ExportedFromExe ()
|
||
|
{
|
||
|
printf ("This output produced by ExportedFromExe.\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
printf ("Hello, world\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|