search for: myfct

Displaying 1 result from an estimated 1 matches for "myfct".

Did you mean: mfct
1999 Sep 14
1
dyn.load
Hello, I have a probleme with the dynamic loading. I make two librairies "myfct.so" and "otherfct.so", where "myfct.so" is calling functions of "otherfct.so", and I want dyn.load() each of it, without generating a unique librarie. For exemple : myfct.c : void myfct(double *x, double *y) { otherfct(x); *y=(*x)+1.0; } myoth.c : void othe...