Hi, > ... could you explain why did you use the names > logf() and expf() instead of the standard names log() and exp()?
logf, expf, powlf etc. are ANSI C functions defined as functions with float argument(s). The functions without the f are functions with double argument(s) and the functions logl, expl, powl are functions with long double argument(s). See chapter 7.12 in C99. Regards, Rolf
