mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 02:09:19 +08:00
14 lines
153 B
C
14 lines
153 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern void Test();
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
printf ("Program started.\n");
|
||
|
Test ();
|
||
|
printf ("Program ends.\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|