]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/libf2c/libF77/d_tanh.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / libf2c / libF77 / d_tanh.c
1 #include "f2c.h"
2
3 #undef abs
4 #include <math.h>
5 double
6 d_tanh (doublereal * x)
7 {
8   return (tanh (*x));
9 }