On 05/01/2011 08:21 AM, Patrick Dupre wrote:
Hello,
I need to use 2 packages: f2c and complex Unfornutely, they both define their own structure complex which are complicting. How can I bypass this issue ? In fact I need to use both of them !
Thank.
Basically f2c defines comlex and doublecomplex as a typedef and complex.h defines it with #define. Additionally C99 defines complex types. Take a look at this short website: http://www.gnu.org/s/libc/manual/html_node/Complex-Numbers.html. You might have to drill down /usr/include complex.h and look at some underlying header files as well as feature codes.