diff options
author | jofret | 2008-04-18 14:50:48 +0000 |
---|---|---|
committer | jofret | 2008-04-18 14:50:48 +0000 |
commit | 75e0319a0cea635ed67524d7753eac145b24614c (patch) | |
tree | 371e3d7805de46c87a853497cedcea782b00935a /src/elementaryFunctions/tanh/stanhs.c | |
parent | 6099917d1f32d6b1132d4df41548e0f1281f7d05 (diff) | |
download | scilab2c-75e0319a0cea635ed67524d7753eac145b24614c.tar.gz scilab2c-75e0319a0cea635ed67524d7753eac145b24614c.tar.bz2 scilab2c-75e0319a0cea635ed67524d7753eac145b24614c.zip |
Double vs Float better management. Enable psycho warnings.
Diffstat (limited to 'src/elementaryFunctions/tanh/stanhs.c')
-rw-r--r-- | src/elementaryFunctions/tanh/stanhs.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/elementaryFunctions/tanh/stanhs.c b/src/elementaryFunctions/tanh/stanhs.c index 68c71391..80462855 100644 --- a/src/elementaryFunctions/tanh/stanhs.c +++ b/src/elementaryFunctions/tanh/stanhs.c @@ -1,18 +1,18 @@ /* -** -*- C -*- -** -** stanhs.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 11:05:37 2006 jofret -** Last update Fri Apr 20 14:42:07 2007 jofret -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include <math.h> #include "tanh.h" float stanhs(float x) { - return (tanh(x)); + return (tanhf(x)); } |