Kai Tietz | 815a664 | 2009-02-19 10:54:09 +0000 | [diff] [blame] | 1 | /** |
| 2 | * This file has no copyright assigned and is placed in the Public Domain. |
Rafaël Carré | 8a67ab4 | 2012-06-28 15:40:59 +0000 | [diff] [blame] | 3 | * This file is part of the mingw-w64 runtime package. |
Kai Tietz | fa0cfe3 | 2010-01-15 20:02:21 +0000 | [diff] [blame] | 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
Kai Tietz | 815a664 | 2009-02-19 10:54:09 +0000 | [diff] [blame] | 5 | */ |
| 6 | #include <math.h> |
| 7 | float tanhf (float x) |
Ozkan Sezer | 8e8a03d | 2009-08-30 08:35:43 +0000 | [diff] [blame] | 8 | { |
| 9 | return (float) tanh (x); |
| 10 | } |