1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* ** -*- C -*- ** ** dlog10s.c ** Made by Bruno JOFRET <bruno.jofret@inria.fr> ** ** Started on Fri Apr 20 14:26:10 2007 jofret ** Last update Thu Sep 6 16:23:04 2007 bruno ** ** Copyright INRIA 2007 */ #include <math.h> #include "log10.h" double dlog10s(double in) { return (log10(in)); }