This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

pow10


I came across a program today wants to use a function `double pow10(double)'.
Our libm doesn't have one.

Should we add one?  I don't know what the deep FP issues might be, but I'm
assuming we can just do `double pow10(double x) { return pow(10.0, x); }'.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]