/* ** -*- C -*- ** ** dtanhs.c ** Made by Bruno JOFRET ** ** Started on Thu Dec 7 12:02:41 2006 jofret ** Last update Fri Apr 20 14:42:27 2007 jofret ** ** Copyright INRIA 2006 */ #include #include "tanh.h" double dtanhs(double x) { return (tanh(x)); }