blob: cb6f4c75a4c53434586346a5cb88db5cdc24e90b [file] [log] [blame]
Kai Tietz815a6642009-02-19 10:54:09 +00001/**
2 * This file has no copyright assigned and is placed in the Public Domain.
Rafaël Carré8a67ab42012-06-28 15:40:59 +00003 * This file is part of the mingw-w64 runtime package.
Kai Tietzfa0cfe32010-01-15 20:02:21 +00004 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
Kai Tietz815a6642009-02-19 10:54:09 +00005 */
6#include <math.h>
7float tanhf (float x)
Ozkan Sezer8e8a03d2009-08-30 08:35:43 +00008{
9 return (float) tanh (x);
10}