>Do you know where I can get the C runtime library math functions?
>I'm writing a C program and I want to call log10(). When I compile,
>the error I get is "... undefined symbol _log10()..."
The math functions are in the "libm.a" library. To use it, add "-lm" to
the end of "gcc <junk> -lm" as shown. (<junk> is whatever you type
now.) Make sure you #include(d) <math.h> as well. After that you
shouldn't have a problem.
Hope This Helps,
Don
--
"The human race is a remarkable creature, one with great potential, and I
hope that Star Trek has helped to show us what we can be if we believe
in ourself and our abilities." -Gene Roddenberry (1921-1991)