059b59c98e
trying to get plugins working on Cygwin. Added Files: Makefile test1-static/* test2-dynamic/* test3-twomodules/* test4-interdep/*
14 lines
249 B
C++
14 lines
249 B
C++
#include <stdio.h>
|
|
#include "module1.h"
|
|
|
|
int main ()
|
|
{
|
|
printf ("start\n");
|
|
printf ("Module name is '%s'\n", module_name);
|
|
int a=5, b=12;
|
|
int c = operate (a, b);
|
|
printf ("operate(%d,%d) = %d\n", a, b, c);
|
|
printf ("stop\n");
|
|
return 0;
|
|
}
|