31b8154266
For now I've been editing the Makefile directly and haven't updated the Makefile.in. Once it works I'll transfer everything to Makefile.in and remove Makefile.
16 lines
193 B
C++
16 lines
193 B
C++
#include <stdio.h>
|
|
#include "main.h"
|
|
|
|
int n_operations = 0;
|
|
|
|
void module_init ()
|
|
{
|
|
printf ("module2 init\n");
|
|
register_module ("module2");
|
|
}
|
|
|
|
int operate (int a, int b)
|
|
{
|
|
return a - b;
|
|
}
|