/* ** -*- C -*- ** ** scoshs.c ** Made by Bruno JOFRET ** ** Started on Thu Dec 7 11:05:37 2006 jofret ** Last update Fri Apr 20 14:40:44 2007 jofret ** ** Copyright INRIA 2006 */ #include #include "cosh.h" float scoshs(float x) { return (cosh(x)); }