N
none
i have:
#include <math.h>
int main (void)
{
double i = 0.0;
double v = 0.0;
i = cos(v);
return 0;
}
i get 'undefined reference to cos'. it happens with any
function in math.h.
what to do?
btw using rh 8.0 3.2-7 gcc version 3.2
please & thanks!
#include <math.h>
int main (void)
{
double i = 0.0;
double v = 0.0;
i = cos(v);
return 0;
}
i get 'undefined reference to cos'. it happens with any
function in math.h.
what to do?
btw using rh 8.0 3.2-7 gcc version 3.2
please & thanks!