newlib/winsup/mingw/samples/simpledll/exe.c
2000-02-17 19:38:33 +00:00

14 lines
153 B
C

#include <stdio.h>
extern void Test();
int main()
{
printf ("Program started.\n");
Test ();
printf ("Program ends.\n");
return 0;
}