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