Hi, I feel like an idiot asking, but what exactly are the sequence of commands needed to make the following C function callable from the chicken interpretor? on Linux.
//test.c
double test(double x){
return x * x;
}
//test.i
%module test
%{
double test(double);
%}
thanks,
tato
_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users
