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;
|
||
|
}
|