mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-25 08:06:49 +03:00
4 lines
72 B
C
4 lines
72 B
C
|
#include <math.h>
|
||
|
float tanhf (float x)
|
||
|
{return (float) tanh (x);}
|